#cookie-consent-popup {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 400px;
    width: 90%;
    display: none;
    flex-direction: column;
    gap: 15px;
    font-family: 'Segoe UI', sans-serif;
}

#cookie-consent-popup p {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.accept-button {
    background-color: #193442;
    color: white;
}

.accept-button:hover {
    background-color: #152b36;
}

.reject-button {
    background-color: #f0f0f0;
    color: #333;
}

.reject-button:hover {
    background-color: #e0e0e0;
} 