
/* Body */
.body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
     margin-top: 60px;
}


        .container {
            max-width: 400px;
            margin: 0 auto;
            background: #ffffff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 8px 8px 8px 8px #B3B3B3;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-control {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        .password-wrapper {
            position: relative;
        }

        .password-wrapper i {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
        }

        .g-recaptcha {
            display: flex;
            justify-content: center;
            margin: 15px 0;
            transform: scale(0.9); /* Resize for better fit */
            transform-origin: center;
        }

        .login-btn {
            width: 100%;
            font-size: 18px;
            background-color: #2102A1;
            color: white;
            border: none;
            padding: 10px;
            border-radius: 5px;
            cursor: pointer;
        }

        .forgot a {
            display: block;
            text-align: center;
            margin-top: 10px;
            text-decoration: none;
            color: #2102A1;
        }
.spinner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
}

/* Smaller spinner */
.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    position: absolute;
    display: none;
}

.button.loading .spinner {
    display: inline-block;
}

.button.loading span {
    visibility: hidden;
}

/* Table styles */
.table-responsive {
    width: 50%; /* Always take up full width */
    margin: 0 auto;
    -webkit-overflow-scrolling: touch; /* Enable touch scrolling */
}

.table-responsive table { /* target the table inside of the responsive div */
    width: 100%; /* make the table 100% of the parent */
    border-collapse: collapse; /* Optional: Collapse table borders */
}


.table {
    border-collapse: collapse;
    width: 100%;
}

.th, .td {
    border: 1px solid #ddd; /* Corrected border */
    padding: 8px;
    text-align: left;
}

.th {
    background-color: #f2f2f2;
}

/* Header */
header {
    background-color: #339bff;
    color: white;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav li {
    display: inline-block;
    margin: 0 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
}


/* Search container */
.search-container {
    display: flex;
    flex-direction: column;
    width: 75%;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.50, 0.80);
}


        .email-input {
            width: 100%;
            padding: 10px; /* Add padding for better spacing */
            border: 1px solid #ccc; /* Add a border */
            border-radius: 5px; /* Round the corners */
            font-size: 1rem; /* Set font size */
            color: #333; /* Set text color */
            box-sizing: border-box; /* Include padding and border in width calculation */
        }
        
.search-container input[type="text"] {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.search-button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.search-btn {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

.search-btn:hover {
    background-color: #0056b3;
}

/* Sidebar */
.sidebar {
    width: 100px;
    background-color: grey;
    position: fixed;
    height: 100%;
    overflow-x: hidden;
}

/* Media queries */
@media (max-width: 768px) and (orientation: portrait) {
    /* Styles for mobile portrait */
}

/* Other styles */
.div2, .div3 {
    border: 1px solid black; /* Corrected border */
    margin: 5px;
    padding: 20px;
    box-shadow: 0px 0px 20px 1px #888888;
}
@media (max-width: 768px) {
    .responsive-table {
        width: 100%;
        display: block;
    }
    .responsive-table tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 10px;
    }
    .responsive-table td {
        width: 100%;
        display: block;
        text-align: left;
    }
}
