/* Distribution Interface Styles */

/* Distribution option styling */
#distribution-option-group {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 10px;
    background-color: #f8f9fa;
}

#distribution-option-group label {
    font-weight: 600;
    color: #333;
}

#distribution-option {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#distribution-info {
    margin-top: 5px;
    font-size: 0.9em;
    color: #666;
}

#distribution-info.text-warning {
    color: #856404 !important;
}

/* Distribution progress styling */
#distribution-progress-container .card {
    margin-bottom: 20px;
}

.progress-summary {
    margin-bottom: 20px;
}

.progress-summary h6 {
    margin-bottom: 10px;
    font-weight: 600;
}

.progress-stats {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    font-size: 0.9em;
}

.progress-stats span {
    color: #666;
}

/* Per-number progress styling */
.number-progress-item {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #fff;
}

.number-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.number-progress-header strong {
    font-size: 1.1em;
    color: #333;
}

.number-progress-stats {
    margin-top: 5px;
}

.number-progress-stats small {
    color: #666;
}

/* Badge colors for status */
.badge-secondary {
    background-color: #6c757d;
}

.badge-primary {
    background-color: #007bff;
}

.badge-success {
    background-color: #28a745;
}

.badge-warning {
    background-color: #ffc107;
    color: #212529;
}

.badge-danger {
    background-color: #dc3545;
}

/* Progress bar animations */
#distribution-progress-container .progress-bar {
    transition: width 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .progress-stats {
        flex-direction: column;
        gap: 5px;
    }
    
    .number-progress-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}
