/**
 * Minimal GDPR Cookie Consent Styles
 */

.gdpr-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f8f9fa;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 15px;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    border-top: 1px solid #e9ecef;
}

.gdpr-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.gdpr-consent-content p {
    margin: 0 0 10px 0;
    padding: 0;
    flex: 1 1 100%;
}

@media (min-width: 768px) {
    .gdpr-consent-content p {
        margin: 0;
        flex: 1 1 60%;
        padding-right: 20px;
    }
    
    .gdpr-consent-buttons {
        flex: 1 1 40%;
        text-align: right;
    }
}

.gdpr-consent-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.gdpr-button {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 8px 16px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 4px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    cursor: pointer;
}

.gdpr-accept {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.gdpr-accept:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.gdpr-necessary {
    color: #212529;
    background-color: #e9ecef;
    border-color: #e9ecef;
}

.gdpr-necessary:hover {
    color: #212529;
    background-color: #d3d9df;
    border-color: #cbd3da;
}

.gdpr-more-info {
    color: #6c757d;
    text-decoration: underline;
    margin-left: 10px;
    font-size: 13px;
}

.gdpr-more-info:hover {
    color: #343a40;
    text-decoration: underline;
}

/* Settings button that appears after consent is given */
.gdpr-settings-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 12px;
    color: #6c757d;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: none; /* Hidden by default, shown via JS when needed */
}

.gdpr-settings-button:hover {
    background-color: #e9ecef;
    color: #343a40;
}
