.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(33, 37, 41, 0.95);
    color: #fff;
    padding: 1rem;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    font-family: 'Rajdhani', sans-serif; /* Using the font from your website */
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice-content {
    flex: 1;
    padding-right: 1rem;
}

.cookie-notice h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #4BB3FD; /* Using blue from your gradient */
}

.cookie-notice p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.cookie-notice-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.cookie-btn-accept {
    background: linear-gradient(to right, #4BB3FD, #6366f1);
    color: white;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(99, 102, 241, 0.3);
}

.cookie-btn-settings {
    background-color: transparent;
    color: #4BB3FD;
    border: 1px solid #4BB3FD;
}

.cookie-btn-settings:hover {
    background-color: rgba(75, 179, 253, 0.1);
}

/* Modal for cookie settings */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.cookie-settings-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-settings-content {
    background-color: white;
    border-radius: 0.75rem;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: #333;
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.cookie-settings-header h3 {
    margin: 0;
    color: #333;
}

.cookie-settings-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #777;
}

.cookie-settings-category {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.cookie-settings-category:last-child {
    border-bottom: none;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.cookie-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .cookie-toggle-slider {
    background: linear-gradient(to right, #4BB3FD, #6366f1);
}

input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-settings-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-notice {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-notice-actions {
        margin-top: 1rem;
        width: 100%;
        justify-content: space-between;
    }
}