.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 1.5rem;
    border-top: 2px solid #4a90e2;
}

body.dark-theme .cookie-notice {
    background: #1c1c1c;
    border-top-color: #6ba3d8;
}

.cookie-notice-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.cookie-notice h3 {
    color: #212529;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

body.dark-theme .cookie-notice h3 {
    color: #fefefe;
}

.cookie-notice p {
    color: #212529;
    margin-bottom: 1rem;
}

body.dark-theme .cookie-notice p {
    color: #fefefe;
}

.cookie-notice h4 {
    color: #212529;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

body.dark-theme .cookie-notice h4 {
    color: #fefefe;
}

.cookie-notice ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.cookie-notice li {
    margin-bottom: 0.5rem;
    color: #212529;
}

body.dark-theme .cookie-notice li {
    color: #fefefe;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cookie-actions button {
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cookie-actions button:hover {
    transform: translateY(-2px);
}

 