/**
 * Cookie Consent Banner Styles
 */

.dental-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 3px solid #1a73e8;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    padding: 20px;
}

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

.consent-text {
    flex: 1;
    margin: 0;
    font-size: 14px;
    color: #333;
}

.consent-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.consent-link {
    color: #1a73e8;
    text-decoration: underline;
    font-size: 14px;
}

@media (max-width: 768px) {
    .consent-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .consent-actions {
        width: 100%;
        justify-content: space-between;
    }

    .consent-actions .btn {
        flex: 1;
        padding: 10px;
        font-size: 14px;
    }

    .consent-link {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}
