
.error-notification {
    background-color: #f8d7da; /* Light red background */
    color: #721c24; /* Dark red text */
    border: 1px solid #f5c6cb; /* Red border */
    border-radius: 4px; /* Rounded corners */
    padding: 10px 15px; /* Padding around text */
    margin-bottom: 15px; /* Space below the notification */
    font-size: 14px; /* Font size for the text */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional subtle shadow */
}

.error-notification p {
    margin: 0; /* Remove default margin for paragraphs */
}

/* Style the dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

.navbar-toggler {
    position: relative;
    top: 10px;
    left: 10px;
    /* z-index: 1000; */
    /* color: #000; */
}

.dropdown-content {
    display: none; /* Initially hide dropdown content */
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    color: #000;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Show the dropdown content when the user clicks on the dropdown button */
.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content.show {
    display: block;
}

/* Ensure table is scrollable on small screens */
.table-responsive {
    overflow-x: auto;
}

/* Basic styling for small screens */
@media (max-width: 767px) {
    .dataTables_wrapper .dataTables_paginate .paginate_button {
        padding: 0 5px;
    }
    .dataTables_wrapper .dataTables_info {
        font-size: 12px;
    }
    .dataTables_wrapper .dataTables_length {
        font-size: 12px;
    }
    .dataTables_wrapper .dataTables_filter {
        font-size: 12px;
    }
    .dataTables_wrapper .dataTables_wrapper {
        font-size: 12px;
    }
}

/* Hide columns on small screens */
@media (max-width: 967px) {
    .hide-mobile {
        display: none;
    }
}

.input-container {
    position: relative;
}
.input-container input {
    padding-right: 30px; /* Space for the eye icon */
}
#togglePassword {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}



