html {
  font-size: 14px;
}
body {
    padding-top: 80px; /* Adjust this value based on your navbar height */
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
#HeadernavBar{
    white-space:nowrap;
}
/*#layoutContainer {
    margin-left: 25px;
}*/
#divlang {
    white-space: nowrap;
    margin-left: 1em;
}
.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;
}

/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

h2, h3 {
    color: #333;
    text-align: center;
}

#homeContent {
    text-align: center;
}

form {
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}

    form label {
        display: block;
        margin-bottom: 8px;
        font-weight: bold;
    }

    form input, form select, form button {
        width: 100%;
        padding: 10px;
        margin-bottom: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    form button {
        background-color: #28a745;
        color: #fff;
        border: none;
        cursor: pointer;
    }

        form button:hover {
            background-color: #218838;
        }

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 12px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}
.filter-row input {
    width: 100%; /* Make the input fill the entire cell width */
    height: 100%; /* Match the height of the table row */
    border: none; /* Remove default borders */
    background: transparent; /* Make background consistent with table */
    font-size: inherit; /* Use the same font size as the table */
    padding: 0; /* Remove extra padding */
    box-sizing: border-box; /* Ensure padding and border are included in dimensions */
}

.filter-row th {
    padding: 0; /* Remove padding around the input */
    margin: 0; /* Remove margin to align inputs perfectly */
}

input:focus {
    outline: none; /* Remove focus outline for cleaner look */
}

.action-buttons {
    display: flex;
    gap: 5px;
}
#membersTable thead input {
    width: 100%;
    padding: 4px;
    box-sizing: border-box;
}

/*#homeContent {
    background: linear-gradient(90deg, #4CAF50, #008CBA);
}*/
#loadingSpinner {
    position: absolute;
    top: 16%;
    left: 45%;
    z-index: 9999; /* Ensure it's on top of other content */
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
a.nav-link {
    cursor: pointer;
}
    a.nav-link:hover {
        text-decoration: underline;
    }

#Signupbtn {
    color: white;
    border-color: white;
}

/* Enhanced Sticky Header */
#homeContent {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* soft bottom shadow */
    border-bottom: 2px solid black !important;
    padding-bottom: 0rem;
    padding-top: 0rem;
}

/* Logo + Title */
.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

/* Language Selector */
.language-selector {
    font-weight: 600;
    font-size: 1rem;
}

.language-option {
    cursor: pointer;
    padding: 0 5px;
    transition: color 0.3s ease;
}

    .language-option:hover {
        color: #0d6efd;
        text-decoration: underline;
    }

/* Auth Buttons */
.navbar-text {
    font-weight: 500;
    color: #333;
}

.navbar .btn-outline-primary {
    border-radius: 20px;
    padding: 4px 12px;
}

.navbar .btn-outline-danger {
    border-radius: 20px;
    padding: 4px 12px;
}

/* Responsive Collapse Menu Padding */
.navbar-collapse {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Improve dropdown look */
.nav-item.dropdown .dropdown-menu {
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
/* Highlight active menu item */
.navbar-nav .nav-link.active {
    color: #0d6efd !important; /* Bootstrap primary blue */
    font-weight: bold;
    
}

/* Menu item hover effect */
.navbar-nav .nav-link:hover {
    color: #0a58ca !important; /* Darker blue on hover */
    text-decoration: none;
}


@media (max-width: 768px) {
    #layoutContainer {
        margin-left: auto;
    }
}