* { margin: 0; padding: 0; box-sizing: border-box; }
.header {
    padding: 0.5rem 1.5rem;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: #b45309;
    border-radius: 8px;
}

.logo h1 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.logo p {
    font-size: 0.85rem;
    color: #6b7280;
}

.user-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-icon {
    position: relative;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 50%;
}

.notification-icon:hover {
    background: #f3f4f6;
}

.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-panel {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    margin-top: 0.5rem;
}

.notification-panel.active {
    display: block;
}

.notification-header {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 500;
}

.notification-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    cursor: pointer;
}

.notification-item:hover {
    background: #f3f4f6;
}

.notification-item:last-child {
    border-bottom: none;
}

.user-info {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
}

.user-info:hover {
    background: #f3f4f6;
}

.user-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    margin-top: 0.5rem;
}

.user-menu.active {
    display: block;
}

.menu-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-item:hover {
    background: #f3f4f6;
}

.menu-item:first-child {
    border-radius: 8px 8px 0 0;
}

.menu-item:last-child {
    border-radius: 0 0 8px 8px;
    border-top: 1px solid #e5e7eb;
}

.navhead {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.navhead-btn {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    background: white;
    transition: all 0.2s;
    font-size: 0.9rem;
    text-decoration: none; 
}

.navhead-btn:hover {
    background: #b45309;
    color: #fff;
}

.navhead-btn.active {
    background: #b45309;
    color: white;
    border-color: #b45309;
}

.toolbar {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    align-items: center;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.date-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.date-nav button {
    padding: 0.4rem 0.8rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: white;
    cursor: pointer;
}

.view-options {
    display: flex;
    gap: 0.75rem;
}

.view-options button {
    padding: 0.4rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    font-size: 0.9rem;
}

.add-task {
    background: #b45309;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
    text-decoration: none;
}

.add-task:hover {
    background: #9a3412;
}

.add-tasks {
    background: #b45309;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
    text-decoration: none;
}

.add-tasks:hover {
    background: #9a3412;
}
.timesheet {
    margin: 1.5rem;
}

.day {
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.day-header {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    margin-bottom: 0.5rem;
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid #e5e7eb;
}

.task {
    display: grid;
    grid-template-columns: 40px 50px 200px 150px 150px auto 100px 40px;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    align-items: center;
}

.task:hover {
    background: #f8fafc;
}

.task:last-child {
    border-bottom: none;
}

.checkbox {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid #d1d5db;
    cursor: pointer;
    transition: all 0.2s;
}

.checkbox:hover {
    border-color: #b45309;
}

.task-tag {
    background: #fef3c7;
    color: #92400e;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
}

.status {
    display: inline-block;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: 0.5rem;
}

.status.pending {
    background: #e0f2fe;
    color: #0369a1;
}

.status.approved {
    background: #dcfce7;
    color: #15803d;
}

select {
    padding: 0.4rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .task {
        grid-template-columns: 40px 50px auto !important;
        gap: 0.5rem;
    }
    
    .task > div:nth-child(n+4) {
        grid-column: 3;
    }

    .toolbar {
        flex-direction: column;
        gap: 1rem;
    }

    .view-options {
        flex-wrap: wrap;
        justify-content: center;
    }

    .timesheet {
        margin: 1rem 0.5rem;
    }

    .day-header {
        padding: 0.5rem;
    }

    .logo p {
        display: none;
    }

    .navhead {
        overflow-x: auto;
        padding: 0.75rem;
    }

    .navhead-btn {
        white-space: nowrap;
    }

    .notification-panel {
        width: 100%;
        position: fixed;
        top: 60px;
        right: 0;
        margin-top: 0;
        height: calc(100vh - 60px);
        border-radius: 0;
    }

    .user-menu {
        width: 100%;
        position: fixed;
        top: 60px;
        right: 0;
        margin-top: 0;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.5rem;
    }

    .logo h1 {
        font-size: 1rem;
    }

    .user-info {
        font-size: 0.8rem;
        padding: 0.3rem;
    }

    .task {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
}

.modal-overlay.active {
    right: 0;
}


.modal-overlaypre {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
}

.modal-overlaypre.active {
    right: 0;
}



.modal-content {
    padding: 1.5rem;
    height: 100%;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.close-btnpre {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #6b7280;
}

.form-control {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.9rem;
}

 

.time-inputs {
    display: flex;
    gap: 0.5rem;
}

.time-inputs .form-control {
    width: 80px;
}

.time-btn {
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: white;
    cursor: pointer;
}

.select-task-btn {
    padding: 0.5rem 1rem;
    background: #fef3c7;
    color: #92400e;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary {
    background: #b45309;
    color: white;
    padding: 0.5rem 2rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.btn-secondary {
    background: white;
    color: #b45309;
    padding: 0.5rem 1rem;
    border: 1px solid #b45309;
    border-radius: 6px;
    cursor: pointer;
}







/* Table Container */
.table-timesheet {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Header Row */
.table-timesheet thead th {
    background-color: #f8fafc;
    color: #fff;
    text-align: left;
    padding: 10px;
    font-size: 14px;
}

/* Data Rows */
.table-timesheet tbody tr {
    border-bottom: 1px solid #ddd;
}

.table-timesheet tbody tr:hover {
    background-color: #f9f9f9;
}

.table-timesheet tbody td {
    padding: 10px;
    font-size: 14px;
    color: #555;
}

/* Alternate Row Colors */
.table-timesheet tbody tr:nth-child(odd) {
    background-color: #f8f8f8;
}

/* Action Column Buttons */
.table-timesheet .action-column a {
    text-decoration: none;
    padding: 5px 10px;
    color: #fff;
    background-color: #a25800;
    border-radius: 5px;
    margin-right: 5px;
    font-size: 12px;
}

.table-timesheet .action-column a:hover {
    background-color: #833e00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .table-timesheet thead {
        display: none;
    }

    .table-timesheet tbody tr {
        display: block;
        margin-bottom: 15px;
    }

    .table-timesheet tbody td {
        display: flex;
        /* justify-content: space-between; */
        padding: 10px 5px;
    }

    .table-timesheet tbody td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #333;
    }
}


#totTime {
    color: #b45309;
    font-size: 16px;
    float: right;
    line-height: 30px;
    margin-left: 9px;
}
#pTit {
    font-size: 22px; text-transform: uppercase; color: #bd541d; margin-top: 14px;
}
.header-row th{
    color: #5f6468 !important;
}
.header-row th a{
    color: #5f6468 !important;
    text-decoration:none;
}






.inpSel {
    width: 100%  !important;
    height: 41px !important;
    visibility: visible !important;
}




table.multiple-input-list.table-renderer tr > td:first-child{
    padding-left: 8px;
}
#timesheets-date-0-project, #timesheets-date-0-epic, #timesheets-date-0-pm{
    /* width: auto !important; */
    height: 41px !important;
    visibility: visible !important;
}

.accordion-button {
    background-color: #F8F9FA !important;
    color: #212529 !important;
}
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body {
    margin-bottom: 1rem;
}
.accordion-item { 
    margin-bottom: 1rem;
    border: 1px solid #E5E5E5;
    border-radius: 11px;
}
.accordion-button {
    border-radius: 0.375rem !important;
}
.accordion-button:not(.collapsed) {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.add-task-btn {
    background-color: #513A77;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    margin-top: 10px;
}
.time-spend {
    color: #6c757d;
    font-size: 0.9rem;
}
.action-icons i {
    cursor: pointer;
    color: #6c757d;
    margin-left: 10px;
}
.header-section {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.table th {
    font-weight: 500;
    color: #6c757d;
}



.sidebar {
    height: 100% !important;
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.sidebar-header {
    padding: 10px 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-header img {
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 8px;
}

.nav-section {
    margin-bottom: 30px;
}

.nav-section-title {
    color: #6c757d;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 15px;
    padding-left: 10px;
}

.nav-item {
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #212529;
    text-decoration: none;
}

.nav-item:hover {
    background-color: #f8f9fa;
}

.nav-item.active {
    background-color: #F3F0F9;
    color: #513A77;
}

.nav-item i {
    width: 20px;
}

/* Main Content Styles */
.main-content {
    margin-left: 250px;
    padding: 20px;
    transition: 0.3s;
    /* background: #F8F9FA !important; */
    height: 100vh;
}

 
 
.accordion-button {
    border-radius: 0.375rem !important;
}

.accordion-button:not(.collapsed) {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.add-task-btn {
    background-color: #513A77;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    margin-top: 10px;
}

.submit-task-btn {
    background-color: #513A77;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    margin-top: 10px;
}
.time-spend {
    color: #6c757d;
    font-size: 16px !important;
    margin-right: 31px;
}

/* Enhanced Table Styles */
.table-responsive {
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.table {
    margin-bottom: 0;
}

.table th {
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6c757d;
    padding: 1rem;
    background: aliceblue;
}

.table td {
    padding: 1rem;
    vertical-align: middle;
    color: #4e5862 !important;
    font-size: 15px;
}

.action-icons i {
    cursor: pointer;
    color: #6c757d;
    margin-left: 10px;
}

/* Base Styles */
.bootstrap-timepicker-widget {
    max-width: 100%;
    min-width: 200px;
    padding: 5px;
    border-radius: 6px;
}

/* Responsive Table Row Height */
.bootstrap-timepicker-widget table {
    width: 100%;
}

.bootstrap-timepicker-widget table tbody tr {
    height: 16px; /* Default for medium screens */
}
 
 
  

/* Mobile-specific table styles */
@media (max-width: 768px) {
    .table {
        display: block;
        width: 100%;
    }
    
    .table thead {
        display: none;  /* Hide headers on mobile */
    }
    
    .table tbody {
        display: block;
        width: 100%;
    }
    
    .table tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        padding: 0.5rem;
    }
    
    .table td {
        display: grid;
        /* grid-template-columns: 40% 60%; */
        padding: 0.5rem;
        border: none;
        font-size: 0.875rem;
    }
    /* .bootstrap-timepicker-widget table tbody tr { 
        height: 40px;
    background: aliceblue;
    } */
    .table td::before {
        content: attr(data-label);
        font-weight: 500;
        color: #6c757d;
    }
    .time-spend{
        display: none;
    }
    .btn-sm{
        margin-right: 14px;
    }
    .table td:last-child {
        border-bottom: 0;
        text-align: right;
        grid-template-columns: 1fr;
    }
    
    .action-icons {
        text-align: right;
        padding-top: 0.5rem;
        border-top: 1px solid #dee2e6;
        margin-top: 0.5rem;
    }
}

/* Toggle Button for Mobile */
.menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: #513A77;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        z-index: 999;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }

    .menu-toggle {
        display: block;
    }

    .main-content.shifted {
        margin-left: 250px;
    }
}



/* Add Button Styles */
.multiple-input-list__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: #fff;
    cursor: pointer;
    padding: 0;
    margin: 5px;
}

.multiple-input-list__btn:hover {
    background-color: #f8f9fa;
    border-color: #ced4da;
}

.multiple-input-list__btn i {
    font-size: 14px;
    color: #513A77;
}

/* Override any conflicting Bootstrap styles */
.btn-default {
    background-color: #fff !important;
    border-color: #ddd !important;
}

.btn-default:hover {
    background-color: #f8f9fa !important;
    border-color: #ced4da !important;
}

/* Replace glyphicon with Font Awesome */
.multiple-input-list__btn .fa-plus {
    line-height: 1;
    width: auto;
    height: auto;
}

.emptyTd {
    text-align: center; 
    background: #f8f9fa !important;
}

table.multiple-input-list tr > th {
    border-bottom: 1px solid #dddddd;
    background: aliceblue !important;
    display: none;
}

.list-cell__project_id, .list-cell__epic_id, .list-cell__project_manager {
    flex: 0 0 auto;
    width: 16.666667%; /* Same as col-md-2 */
}
[class^="list-cell__hours_worked"] {
    flex: 0 0 auto;
    width: 12.666667%;
}


@media (max-width: 768px) {
    .list-cell__project_id, .list-cell__epic_id, .list-cell__project_manager {
        flex: 0 0 auto;
        width: 100%;  
    }
    [class^="list-cell__hours_worked"] {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* Add custom styles for Toastr */
.toast {
    font-family: Arial, sans-serif;  /* Customize the font */
    font-size: 14px;  /* Customize the font size */
    border-radius: 5px;  /* Rounded corners */
    padding: 15px;
}

.toast-success {
    background-color: #28a745;  /* Green background for success */
}

.toast-error {
    background-color: #dc3545;  /* Red background for error */
}

.toast-info {
    background-color: #17a2b8;  /* Blue background for info */
}
 
.swal2-title{
    font-size: 22px !important;
}



.addtaskPend {
    background: #b45309;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
    text-decoration: none;
    font-weight: normal;
    cursor: no-drop;
    opacity: 0.5;
}

/* @media (min-width: 1200px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 100%;
    }
} */






















.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.loader-overlay.show {
    display: flex;
    opacity: 1;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--light-purple);
    border-radius: 50%;
    border-top: 5px solid var(--primary-color);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-content {
    text-align: center;
}

.loader-text {
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Page Load Transition */
.page-wrapper {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.page-wrapper.loaded {
    opacity: 1;
    transform: translateY(0);
    overflow-x: hidden;
}

/* Initial Loading Screen */
.initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.6s ease-out;
}

.initial-loader.fade-out {
    opacity: 0;
}

.initial-loader .loader {
    width: 60px;
    height: 60px;
    border-width: 6px;
}
:root {
    --primary-color: #5E2E87;
    --secondary-color: #8C54BF;
    --light-purple: #E6D5F7;
    --border-radius: 15px;
}

@media (min-width: 1400px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 100% !important;
        margin:auto;
    }
}


@media (min-width: 1200px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 100%;
    }
}



.dateDivs{
    font-weight: normal;
    background: #f9f9fb !important;
    font-weight: bold;
}

/* td{ border:1px solid #ccc; } */




/* Pagination Styles */
.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }
  
  .pagination li {
    margin: 0;
  }
  
  .pagination li a,
  .pagination li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    margin: 0;
    color: #555;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
    border-right: none;
    transition: all 0.2s ease;
  }
  
  .pagination li:first-child a,
  .pagination li:first-child span {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
  }
  
  .pagination li:last-child a,
  .pagination li:last-child span {
    border-right: 1px solid #ddd;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
  }
  
  .pagination li a:hover {
    background-color: #f5f5f5;
    color: #333;
    z-index: 2;
  }
  
  .pagination li.active a {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
    z-index: 3;
    cursor: default;
  }
  
  .pagination li.disabled span {
    color: #ccc;
    background-color: #f9f9f9;
    cursor: not-allowed;
  }
  
  /* Hover states */
  .pagination li:not(.active):not(.disabled) a:hover {
    background-color: #e9ecef;
  }
  
  /* Focus states for accessibility */
  .pagination li a:focus {
    outline: 2px solid #80bdff;
    outline-offset: -2px;
    z-index: 4;
  }
  
  /* Optional: Add responsive styles */
  @media (max-width: 576px) {
    .pagination li a,
    .pagination li span {
      min-width: 2rem;
      height: 2rem;
      padding: 0 0.5rem;
      font-size: 0.875rem;
    }
  }

  .projectDropdown{
    width: 100% !important;
  }


table.multiple-input-list.table-renderer tbody tr > td {
    padding-left: 0px !important;
}


table.multiple-input-list.table-renderer tr > td:first-child {
    padding-left: 6px !important;
}