.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

.cookie-header h2 {
    font-size: 16px;
    margin: 0 0 10px;
    color: #333;
}

.cookie-message {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.cookie-btn {
    padding: 10px 15px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.accept-all {
    background-color: #d32f2f;
    color: #fff;
}

.accept-selection {
    background-color: #f1d600;
    color: #000;
}

.reject-all {
    background-color: #ddd;
    color: #333;
}

.cookie-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    margin-bottom: 10px;
}

.cookie-details {
    color: #d32f2f;
    text-decoration: none;
    font-size: 14px;
}

.cookie-details:hover {
    text-decoration: underline;
}
