@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&family=Zen+Dots&display=swap');

body {
    font-family: 'Work Sans', sans-serif;
    background-color: #F5F3FF !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Custom styles for logout button */
.logout-btn {
    background-color: #e74c3c;
    /* Red color for Logout */
    color: white;
    /* White text color */
    border-radius: 25px;
    /* Round shape (adjust as needed) */
    padding: 10px 20px;
    /* Padding for better appearance */
    border: none;
    /* Remove default border */
    display: flex;
    align-items: center;
    /* Vertically center the content */
    text-decoration: none;
    /* Remove underline */
    width: 100%;
    /* Optional: make the button fill its parent */
    box-sizing: border-box;
    /* Include padding in width calculation */
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 35px;
    padding-bottom: 10px;
}

.h1-heading {
    color: #3A3A49;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 0px;
    padding: 0px !important;
}

.heading-text {
    color: #3A3A49;
    font-size: 14px;
    padding: 0px !important;
}

/* Fixed Contact Button Styles */
.contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #6143E4;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 99;
}

.contact-btn:hover {
    background-color: #2201b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.contact-btn i {
    margin-right: 10px;
    font-size: 18px;
}

/* Popup Styles */
.Overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.Overlay.active {
    opacity: 1;
    visibility: visible;
}

.Content {
    background-color: white;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.Overlay.active .popupContent {
    transform: scale(1);
}

.Header {
    background-color: #27ae60;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.popupBody {
    padding: 20px;
}

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

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #2c3e50;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}


textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #219653;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 30px 20px;
    display: none;
}

.carByRegion {
    display: flex;
    width: 100%;
    gap: 20px;
    margin-bottom: 15px;
    padding: 0;
}


.success-message i {
    font-size: 50px;
    color: #27ae60;
    margin-bottom: 15px;
}

.success-message h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.success-message p {
    color: #7f8c8d;
}

/* Responsive adjustments */
@media (max-width: 927px) {

    .wrapper {
        padding: 15px;
    }

    .contact-btn {
        padding: 12px 15px;
        bottom: 20px;
        right: 20px;
    }

    .chart-container {
        padding: 10px 0px 30px 0px !important;
    }

    .carByRegion {
        flex-wrap: wrap;
    }

    .section-1 {
        width: 100% !important;
    }

    .mobile-cards {
        display: block !important;
    }

    .c-table {
        display: none !important;
    }

    .search-bar {
        display: none;
    }

    .contact-btn span {
        display: none;
    }

    .contact-btn i {
        margin-right: 0;
    }
}

.mobile-cards {

    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    background-color: #ffffff;
    padding: 10px 20px;
    border: 1px solid #E2E3E5;
}

.mobile-card {
    /* background: #f8f9fa; */
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid #dee2e6;
    padding-top: 10px;
}

.mobile-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
}

.mobile-header h2 {
    font-size: 16px;
    font-weight: 600;
    color: #3A3A49;
}

.mobile-content {
    display: flex;
    background: #f8f9fa;
    overflow: hidden;
    border: 1px solid #dee2e6;
    padding: 10px 20px;
}

.mobile-title {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: start;
    width: 50%;
}

.mobile-details {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: end;
}

.mobile-title span {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.mobile-details span {
    font-size: 16px;
    color: #000;

}

.mobile-details .online {
    font-size: 16px;
    color: #27ae60;
    font-weight: 600;
}

.mobile-action {
    width: 100%;
    display: flex;
    padding: 20px;
}

.mobile-action button {
    width: 20%;
    background-color: #6143E4;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

/* Footer Style */
.dashboard-footer {
    background-color: white;
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.footer-left {
    color: #666;
    font-size: 14px;
}

.footer-right {
    display: flex;
    gap: 20px;
}

.footer-link {
    color: #666;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #5a46e6;
}

.footer-link i {
    margin-right: 6px;
}

.heading {
    pointer-events: none;
    font-size: 28px;
    font-weight: 600;
    user-select: none;
    color: #3A3A49;
    margin: 0;
}

.card-container {
    width: 65rem;
    display: flex;
    gap: 4rem;
}

.car-region {
    padding: 20px;
}

.chart-container {
    background: white;
    border-radius: 12px;
    padding: 10px 30px 30px 30px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    /* max-width: 600px; */
    width: 100%;
}

.chart-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.regions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    margin-bottom: 25px;
}

.region-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    position: relative;
    transition: transform 0.2s ease;
    color: inherit;
}

.region-item:hover {
    transform: translateX(3px);
    text-decoration: none !important;
}

.region-item:hover .region-name {
    color: #007AFF;
}

.region-info {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 15px;
}

.region-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    min-width: 180px;
    transition: color 0.2s ease;
}

.progress-container {
    flex: 1;
    height: 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    border-radius: 4px;
    width: 0%;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* State-specific colors */
.nsw {
    background: linear-gradient(135deg, #ff9500, #ffb340);
}

.vic {
    background: linear-gradient(135deg, #007AFF, #4DA6FF);
}

.qld {
    background: linear-gradient(135deg, #34C759, #66D17A);
}

.wa {
    background: linear-gradient(135deg, #FF3B30, #FF6B60);
}

.sa {
    background: linear-gradient(135deg, #AF52DE, #C77DFF);
}

.nt {
    background: linear-gradient(135deg, #FF9500, #FFAD33);
}

.act {
    background: linear-gradient(135deg, #5856D6, #7B79EC);
}

.tas {
    background: linear-gradient(135deg, #32D74B, #5DE26A);
}

.other {
    background: linear-gradient(135deg, #8E8E93, #AEAEB2);
}

.region-count {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    min-width: 70px;
    text-align: right;
}

.total-section {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.total-count {
    font-size: 18px;
    font-weight: 700;
    color: #007AFF;
}

.c-card {
    width: 100%;
    height: 150px;
    background-color: #ffffff;
    border: 1px solid #E2E3E5;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 7px;
    margin-bottom: 5px;
    transition: ease all 0.3s;
    cursor: pointer;
}

.c-card:hover {
    transform: scale(1.05);
}

.card-content {
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.round {
    border-radius: 50%;
    width: 69.25px;
    height: 69.25px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    /* color: #0a7c13; */
}

.data {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.count {
    width: 100%;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    color: #a54509;
}

.wrapper-2 {
    padding: 0 2rem;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    width: 100%;
    flex-wrap: nowrap;
    gap: 32px;
}

.car-region {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 10px 0px 25px 0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.section-1 {
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #E2E3E5;
    background-color: #ffffff;
}

.event-card {
    width: 100%;
    height: auto;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 15px 10px;
    border-radius: 10px;
    border: 1px solid #E2E3E5;
    background-color: #ffffff;
}

.auction-event-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* gap: 5px; */
}

.auction-event-content span {
    font-size: 16px;
    color: #3A3A49;
    font-weight: 500;
}

#yellow {
    background-color: #ffcb3a;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

#blue {
    background-color: #2c60ce;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}


#green {
    background-color: #31aa41;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.time-auc {
    display: flex;
    gap: 15px;
}

.time-auc span {
    font-size: 14px;
    color: #69696e;
    font-weight: 500;
}

.state-card {
    position: relative;
    width: 23%;
    width: 23%;
    height: 106.25px;
    padding: 20px;
    border-radius: 5px;
    border-radius: 5px;
    display: flex;
    border: 1px solid #E2E3E5;
    border: 1px solid #E2E3E5;
    flex-direction: column;
    cursor: pointer;
    transition: ease all 0.3s;
    transition: ease all 0.3s;
}

.state-card:hover {
    box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.2);
}

.state-card:hover {
    box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.2);
}

.state-card i {
    position: absolute;
    color: #E4A143;
    font-size: 20px;
    top: 50px;
    right: 32px;
}

.state {
    font-size: 14px;
    color: #5c5c5c;
    font-weight: 500;
    color: #5c5c5c;
    font-weight: 500;
}

.state-count {
    font-size: 20px;
    color: #333333;
    font-weight: 700;
}

#state-1 {
    border-top: 5px solid #5487f3;
}

#state-2 {
    border-top: 5px solid #7e54f3;
}

#state-3 {
    border-top: 5px solid #ff823a;
}

#state-4 {
    border-top: 5px solid #16ac16;
}

#state-5 {
    border-top: 5px solid #f354b1;
}

#state-6 {
    border-top: 5px solid #2c60ce;
}

#state-7 {
    border-top: 5px solid #6143E4;
    border-top: 5px solid #6143E4;
}

#state-8 {
    border-top: 5px solid #377437;
}

.wrapper-3 {
    display: flex;
    justify-content: center;
    padding: 20px 0px;
    gap: 42px;
}

.h4-heading {
    color: #3A3A49;
    font-size: 20px;
    font-weight: 600;
    /* margin: 0; */
}

.live-header {
    font-weight: 600;
    font-size: 24px;
    color: #3A3A49;
    padding: 0;
    margin: 0;
}

.c-table {
    width: 100%;
    display: flex;
    padding: 0px;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    background-color: #ffffff;
    padding: 10px 0px;
    border: 1px solid #E2E3E5;
    /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
    /* box-shadow: inset 0 0 0 0.5px #6143E4; */
}

.live-now {
    color: #ff135a;
    background-color: #fcdee7;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 12px;
    border-radius: 30px;
    margin-left: 10px;
}

.c-table div h4 {
    font-size: 20px;
    font-weight: 600;
    color: #3A3A49;

}

.toggle-menu {
    display: none;
    cursor: pointer;
}

.wrapper-2:nth-of-type(3) {
    margin-bottom: 0 !important;
    /* or whatever value you want */
}


/* Modal Custom Styles */
.modal-content {
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background-color: #5271FF;
    color: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.modal-title {
    font-weight: bold;
}

.modal-body {
    padding: 20px;
}

/* Popup Overlay Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
    animation: fadeIn 0.3s ease-in-out;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.popup-header h5 {
    margin: 0;
    font-size: 1.2rem;
}

.popup-body {
    margin-top: 15px;
}

.details-container {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
}

.card {
    border: none;
}

/* Close Button Styling */
.btn-close {
    cursor: pointer;
    background: none;
    border: none;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


.view-button {
    background-color: #ffffff;
    outline: none;
    border: none;
    color: #FF1313;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.viewBtn {
    color: #ffffff;
    background-color: #007AFF;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    /* border:1px solid #fca6a6; */
    padding: 5px 10px;
    border-radius: 5px;
}

.viewBtn:hover {
    /* background-color: #f1f1f1; */
    color: #FFFFFF;
    text-decoration: none;
    transform: scale(1.05);
}

.table-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.head {
    font-size: 16px;
    font-weight: 500 !important;
    color: #3A3A49 !important;
}



.happening {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #c7f7cb;
    color: #258241;
    background-color: #c7f7cb;
    color: #258241;
    font-size: 14px;
    font-weight: 500;
    font-weight: 500;
    padding: 4px 0px;

    width: 155px;
    border-radius: 30px;
    border-radius: 30px;
    pointer-events: none;
}

.detail {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    background-color: #6143E4;
    color: #ffffff;
    padding: 5px 10px;
    border: none;
    border-radius: 3px;
    transition: 0.3s ease all;
}

.detail a {
    color: #ffffff;
}


.detail:hover {
    background-color: #8065f7;
    transform: scale(1.05);
}

.detail:hover a {
    text-decoration: none;
    color: #ffffff;
}


.row-no {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 400;
    color: #3A3A49;
}

.row-data {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 400;
    color: #3A3A49;
}

.auctioneer {
    padding: 5px 10px;
    background-color: #F5F3FF;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    color: #6143E4;
    border: 1px solid #c2b8f1;
}

.table-row {
    height: 55px;
    border-bottom: 1px solid #E2E3E5;
    display: flex;
    align-items: center;

}

.table-row:last-child {
    border-bottom: none;

}

.search-bar form {
    display: flex;
    width: 100%;
    margin: 0;
    background-color: #ffffff;
    /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); */
    border: 2px solid #E2E3E5;
    border-radius: 8px;
    padding: 0px 5px;
    gap: 5px;
    transition: ease all 0.3s;
}


.s-input {
    width: 100%;
    padding: 10px;
    background-color: #FFFFFF;
    border: none;
    outline: none;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

::placeholder {
    color: #878790;
    font-size: 14px;
    font-weight: 400;
}

.search-button {
    background-color: #ffffff;
    color: #878790;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    ;
    transition: ease all 0.3s;
}

.search-button i {
    font-size: 18px;
    color: #b1b1b9;
}

.search-button:hover {
    background-color: #f1f1f1;
}

.analytics-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;

}

.profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    border-radius: 5px;
    /* border: 1px solid #E2E3E5; */
    gap: 10px;
    padding: 5px 10px 5px 5px;
    pointer-events: none;
}


.profile-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    /* background-color: #F5F3FF; */
    border-radius: 5px;
    padding: 5px;
    width: 40px;
    color: #fff;
    box-shadow: inset 0 0 0 0.5px #6143E4;
    font-size: 16px;
    font-weight: 600;
    font-family: "Zen Dots", sans-serif;
}

.profile .name {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon {
    cursor: pointer;
}

/* Footer CSS */
.footer {
    height: auto;
    background-color: #F5F3FF;
    font-size: 15px;
}

/* Sidebar CSS */
.w-sidebar {
    z-index: 999;
    flex-direction: column;
    margin-bottom: 0;
    list-style: none;
    background-color: #1f2937;
    background-size: cover;
    padding-right: 1.5rem;
    min-height: 100vh;
    /* Ensures the sidebar stretches vertically to fill the screen */
    width: 320px !important;
    align-items: center;
    border-right: 1px solid #E2E3E5;
    z-index: 1;
}

.w-sidebar ul {
    list-style: none;
    gap: 2rem;
}

.close-menu-bar {
    display: none;
}

.activa,
.activa i {
    color: #FFFFFFFF !important;
    background-color: #6143E4 !important;
    border-radius: 5px;
}


@media (max-width:1366px) {
    .c-card {
        width: 100%;
        height: 166.33px;
    }

    .overclass {
        flex-wrap: wrap;
    }

    .wrapper-2 {
        gap: 35px;
        width: auto;
    }

    .card-box {
        width: 100%;
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .w-sidebar {
        transform: translateX(-100%);
        z-index: 100000;
        position: fixed;
        top: 0;
        left: 0;
        transition: 0.5s ease all;
        backdrop-filter: blur(5px);
    }

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

    .sidebar-overlay {
        display: block;
    }

    .close-menu-bar {
        display: block;
    }

    .toggle-menu {
        display: block;
    }

    .state-card {
        width: 190.52px;
        height: 106.25px;
    }

    .heading {
        font-size: 26px;
        left: 1rem;
    }

    .h4-heading {
        left: 7rem;
    }

    .live-header {
        left: -0.5rem;
    }
}

@media (max-width: 531px) {
    .mobile-action button {
        width: 100%;
    }

    .w-sidebar{
        width: 100% !important;
    }

    .inner-item{
        text-align: left !important;
        padding-left: 4rem !important;
    }
}


/* Hover effect for logout button */
.logout-btn:hover {
    background-color: #c0392b;
    /* Darker red on hover */
    text-decoration: none;
    /* Remove underline on hover */
}

/* Optional: Icon style for the logout button */
.logout-btn i {
    margin-right: 10px;
    /* Space between icon and text */
}

/* Green header background */
.bg-green {
    background-color: #28a745 !important;
    /* Green color */
}

/* Ensure dropdown stays in place */
.fixed-dropdown {
    position: fixed;
    top: 60px;
    /* Adjust to keep it below the top bar */
    right: 0;
    width: 250px;
    /* Adjust width as necessary */
    z-index: 1050;
    /* Make sure the dropdown stays above other content */
}

/* Optional: Improve dropdown styling */
.dropdown-menu {
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Optional: Change text color of dropdown items */
.dropdown-item {
    color: #333;
    /* Default text color */
}

.dropdown-item:hover {
    background-color: #f1f1f1;
    /* Hover effect */
    color: #000;
    /* Dark text on hover */
}

/* Adjust the navbar text color */
.w-sidebar .nav-link{
    display: flex;
    gap: 10px;
    position: relative;
    transition: all 0.8s;
    color: #cacaca;
    padding: 15px 20px;
}
.w-sidebar .nav-item {
    position: relative;
    transition: all 0.8s;
    color: #cacaca;
    /* Make text white in the navbar */
}

.w-sidebar .nav-link:hover {
    color: #878790;
    background-color: #2e3744;
    border-radius: 5px;
    /* Change text color on hover */
}

.inner-item {
    width: 100%;
    text-align: center;
    text-decoration: none;
    color: #cacaca !important;
    background-color: #1f2937 !important;
    padding: 10px 15px;
}

.inner-item:hover {
    text-decoration: none;
    background-color: #2e3744 !important;
}


/* Adjust profile image */
.img-profile {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

body {
    font-family: 'Roboto', sans-serif;
}