html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn-primary {
    background-color: #650015 !important;
    border:none !important
   
}
.btn:hover{
    background-color:transparent !important;
    color:#010101 !important;
    border:1px solid #010101 !important

}
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
header nav .logo img {
    max-height: 50px;
}
.form-input {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

    .login-box {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 400px;
        padding: 40px;
        margin: 20px auto;
        transform: translate(-50%, -55%);
        background: rgba( 255, 255, 255, 0.15 );
        box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
        backdrop-filter: blur( 10px );
        -webkit-backdrop-filter: blur( 10px );
        border-radius: 10px;
        border: 1px solid rgba( 255, 255, 255, 0.18 );
        box-sizing: border-box;
        box-shadow: 0 15px 25px rgba(0,0,0,.6);
        border-radius: 10px;
    }

    .login-box p:first-child {
        margin: 0 0 30px;
        padding: 0;
        color: #fff;
        text-align: center;
        font-size: 1.5rem;
        font-weight: bold;
        letter-spacing: 1px;
    }

    .login-box .user-box {
        position: relative;
    }

        .login-box .user-box input {
            width: 100%;
            padding: 10px 0;
            font-size: 16px;
            color: #fff;
            margin-bottom: 30px;
            border: none;
            border-bottom: 1px solid #fff;
            outline: none;
            background: transparent;
        }

        .login-box .user-box label {
            position: absolute;
            top: 0;
            left: 0;
            padding: 10px 0;
            font-size: 16px;
            color: #fff;
            pointer-events: none;
            transition: .5s;
        }

        .login-box .user-box input:focus ~ label,
        .login-box .user-box input:valid ~ label {
            top: -20px;
            left: 0;
            color: #fff;
            font-size: 12px;
        }
        
  /*  .login-box form a {
        position: relative;
        display: inline-block;
        padding: 10px 20px;
        font-weight: bold;
        color: #fff;
        font-size: 16px;
        text-decoration: none;
        text-transform: uppercase;
        overflow: hidden;
        transition: .5s;
        margin-top: 40px;
        letter-spacing: 3px
    }

    .login-box a:hover {
        background: #fff;
        color: #272727;
        border-radius: 5px;
    }*/

    .login-box a span {
        position: absolute;
        display: block;
        
    }

        .login-box a span:nth-child(1) {
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #fff);
            animation: btn-anim1 1.5s linear infinite;

        }

@keyframes btn-anim1 {
    0% {
        left: -100%;
    }

    50%,100% {
        left: 100%;
    }
}

.login-box a span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #fff);
    animation: btn-anim2 1.5s linear infinite;
    animation-delay: .375s
}

@keyframes btn-anim2 {
    0% {
        top: -100%;
    }

    50%,100% {
        top: 100%;
    }
}

.login-box a span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #fff);
    animation: btn-anim3 1.5s linear infinite;
    animation-delay: .75s
}

@keyframes btn-anim3 {
    0% {
        right: -100%;
    }

    50%,100% {
        right: 100%;
    }
}

.login-box a span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #fff);
    animation: btn-anim4 1.5s linear infinite;
    animation-delay: 1.125s
}

@keyframes btn-anim4 {
    0% {
        bottom: -100%;
    }

    50%,100% {
        bottom: 100%;
    }
}

.login-box p:last-child {
    color: #aaa;
    font-size: 14px;
}

.login-box a.a2 {
    color: #fff;
    text-decoration: none;
}

    .login-box a.a2:hover {
        background: transparent;
        color: #aaa;
        border-radius: 5px;
    }

.button {
    position: relative;
    overflow: hidden;
    height: 3rem;
    padding: 0 2rem;
    border-radius: 1.5rem;
    background: #aaa;
    background-size: 400%;
    color: #010101;
    border: none;
    cursor: pointer;
}

    .button:hover::before {
        transform: scaleX(1);
    }

.button-content {
    position: relative;
    z-index: 1;
}

.button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: 0 50%;
    width: 100%;
    height: inherit;
    border-radius: inherit;
    background:#1b8a96c1;
    transition: all 0.475s;
   
}
.forget-pass a {
    display: flex;
    justify-self: right;
    color:#f1f1f1;
    
}
.forget-pass a:hover {
  color:#258cfbac
}
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9998;
}

#divNewTeam {
    width: 100%;
    max-height: 60vh;
    z-index: 9999;
    position: absolute;
    left: 0;
    top: -100%; 
    transition: top 0.5s ease; 
    display: none;
    position:fixed
}

    #divNewTeam.show {
        top: 3%; 
        display: block; 
    }
    .form-coltrol:focus{
        border:none !important
    }
.edit-btn:hover{
    cursor:pointer
}

 .navbar {
        background-color: #f8f9fa;
        padding: 0.5rem 1rem;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 1rem;
        font-weight: 500;
        color: #333;
        padding: 0.5rem 1rem;
        transition: color 0.3s, background-color 0.3s;
    }

    /* Hover effect on nav links */
    .navbar-light .navbar-nav .nav-link:hover {
        color: #007bff;
        background-color: #f1f1f1;
        border-radius: 5px;
    }

    /* Active state for nav links */
    .navbar-light .navbar-nav .nav-link.active {
        color: #650015 !important;
        font-weight: 600;
    }

    /* Profile Icon Styling */
    .profile-icon:hover {
        color: #007bff;
        transition: color 0.3s ease-in-out;
    }

    /* Logo Styling */
    .logo img {
        max-width: 150px;
        transition: transform 0.3s ease;
    }

    /* Add hover effect on the logo */
    .logo img:hover {
        transform: scale(1.05);
    }

    /* Navbar Toggler */
    .navbar-toggler {
        border: none;
    }

    /* Responsive Styling */
    @media (max-width: 768px) {
        .navbar-light .navbar-nav {
            text-align: center;
        }

        .navbar-collapse {
            justify-content: center;
        }

        .navbar-nav .nav-link {
            font-size: 1.1rem;
        }

        .profile-icon {
            margin-top: 10px;
        }
    }

#data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

    /* Table header styling */
    #data-table thead {
        background-color: #650015;
        color: #fff;
        font-weight: bold;
    }

    #data-table th,
    #data-table td {
        padding: 15px;
        text-align: left;
        font-size: 12px;
    }

    /* Table rows */
    #data-table tbody tr {
        border-bottom: 1px solid #ddd;
        transition: background-color 0.3s ease-in-out;
    }

        /* Hover effect on rows */
        #data-table tbody tr:hover {
            background-color: #f1f1f1;
        }

    /* Image inside table */
    #data-table tbody td img {
        width: 50px;
        height: 50px;
        object-fit: cover;
        border-radius: 50%;
    }

/* Style for Option column */
.options a {
    font-weight: 600;
    margin-right: 8px;
    transition: color 0.3s ease;
}

    .options a:hover {
        color: #0056b3;
    }

.options .text-danger:hover {
    color: #c82333;
}

/* Centering text in the empty cell when no records */
.text-center {
    text-align: center;
    padding: 10px;
    font-size: 1.1rem;
    color: #888;
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Stack the table headers and cells on smaller screens */
    #data-table th, #data-table td {
        font-size: 0.9rem;
        padding: 10px;
    }

    /* Make the table rows stacked */
    #data-table thead {
        display: none;
    }

    #data-table tbody {
        display: block;
    }

        #data-table tbody tr {
            display: block;
            margin-bottom: 10px;
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        #data-table tbody td {
            display: block;
            padding: 12px;
            text-align: left;
            border: none;
        }

            #data-table tbody td::before {
                content: attr(data-label);
                font-weight: bold;
                text-transform: capitalize;
                float: left;
                color: #007bff;
            }
}
/* From Uiverse.io by csemszepp */
.custum-file-upload {
    height: 100px;
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border: 2px dashed #650015;
   /* background-color: #650015;*/
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0px 48px 35px -48px #e8e8e8;
}

    .custum-file-upload .icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .custum-file-upload .icon svg {
            height: 40px;
            fill: #650015;
        }

    .custum-file-upload .text {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .custum-file-upload .text span {
            font-weight: 400;
            color: #650015;
            font-size:12px
        }

    .custum-file-upload input {
        display: none;
    }
.thead-dark {
    background-color: #650015;
    color: #f1f1f1;
}