/**
 * Repair Count Echange - Styles
 * Module Superadmin
 */

.description-box {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.description-box h3 {
    margin-top: 0;
    color: #7dd3fc;
    font-size: 18px;
}

.description-box p {
    line-height: 1.6;
    margin: 10px 0;
}

.description-box code {
    background: rgba(255,255,255,0.15);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Consolas', 'Monaco', monospace;
}

.description-box ul {
    margin: 10px 0;
    padding-left: 25px;
}

.description-box li {
    margin: 8px 0;
    line-height: 1.5;
}

.section-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.section-box h3 {
    margin-top: 0;
    color: #1e3a5f;
    font-size: 16px;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 10px;
}

.option-box {
    background: #fffbeb;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #fbbf24;
}

.option-box label {
    cursor: pointer;
    color: #92400e;
}

.actions-box {
    padding: 20px 0;
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-info {
    background: #0ea5e9;
    color: white;
}

.btn-info:hover {
    background: #0284c7;
    transform: translateY(-1px);
}

.btn-primary {
    background: #3b82f6;
    color: white;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.btn-danger {
    background: #ef4444;
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
    transform: translateY(-1px);
}

.log-container {
    background: #1e1e1e;
    color: #d4d4d4;
    padding: 15px;
    border-radius: 6px;
    max-height: 300px;
    overflow-y: auto;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 13px;
    margin-top: 15px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

table th, table td {
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    text-align: left;
}

table th {
    background: #f3f4f6;
    font-weight: 600;
    color: #374151;
}

table tr:nth-child(even) {
    background: #f9fafb;
}

.stat-error {
    color: #dc2626;
    font-weight: 600;
}

.stat-warning {
    color: #d97706;
    font-weight: 600;
}

.stat-success {
    color: #059669;
    font-weight: 600;
}

