/**
 * Bulk Credit Banner Styles
 * Used on the post-job form when employer has available bulk credits.
 */

.bulk-credit-banner {
    margin-bottom: 1rem;
}

.bulk-credit-banner-card {
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
}

.bulk-credit-banner-header {
    font-size: 1.05rem;
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

.bulk-credit-banner-text {
    font-size: 0.9rem;
    color: #4a7c4e;
    margin-bottom: 1rem;
}

.bulk-credit-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bulk-credit-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #dcedc8;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bulk-credit-option:hover {
    border-color: #81c784;
    box-shadow: 0 2px 6px rgba(46, 125, 50, 0.1);
}

.bulk-credit-option.selected {
    border-color: #2e7d32;
    background: #f1f8e9;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.15);
}

.bulk-credit-option-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.bulk-credit-option-info strong {
    font-size: 0.95rem;
    color: #2c3e50;
}

.bulk-credit-detail {
    font-size: 0.8rem;
    color: #6c757d;
}

.bulk-credit-option-count {
    font-size: 0.85rem;
    color: #2e7d32;
    font-weight: 600;
    white-space: nowrap;
    margin: 0 1rem;
}

.bulk-credit-use-btn {
    white-space: nowrap;
}

.bulk-credit-cancel-row {
    margin-top: 0.75rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 576px) {
    .bulk-credit-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .bulk-credit-option-count {
        margin: 0;
    }

    .bulk-credit-use-btn {
        align-self: stretch;
        text-align: center;
    }
}
