/**
 * CroPilot Built-in Consent Banner Styles
 *
 * @package CroPilot
 * @since 2.6.0
 */

#cropilot-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #f9fafb;
    padding: 16px 24px;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.25);
}

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

.cropilot-consent-text {
    margin: 0;
    flex: 1;
    min-width: 200px;
    color: #d1d5db;
}

.cropilot-consent-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cropilot-consent-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    transition: background-color 0.15s ease;
}

.cropilot-consent-accept {
    background: #7c3aed;
    color: #fff;
}

.cropilot-consent-accept:hover {
    background: #6d28d9;
}

.cropilot-consent-decline {
    background: transparent;
    color: #d1d5db;
    border: 1px solid #4b5563;
}

.cropilot-consent-decline:hover {
    background: #374151;
}

@media (max-width: 600px) {
    #cropilot-consent-banner {
        padding: 12px 16px;
    }

    .cropilot-consent-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .cropilot-consent-buttons {
        width: 100%;
        justify-content: center;
    }
}
