.sidebar-nav #sidebarnav .sidebar-item.selected>.sidebar-link {
    background: #ffb600 !important;
}
.cookie-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-in-out;
}
.cookie-popup-box {
    background-color: #ffe6e6;
    border-left: 6px solid #ff0000;
    color: #990000;
    padding: 20px 30px;
    border-radius: 8px;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-family: "Segoe UI", sans-serif;
    text-align: left;
    position: relative;
    animation: slideUp 0.4s ease-out;
}
.cookie-popup-box h3 {
    margin-top: 0;
    font-size: 22px;
}
.cookie-popup-box p {
    margin-bottom: 0;
    font-size: 16px;
}
.cookie-popup-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    color: #900;
    cursor: pointer;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}