        :root {
            --primary-color: #4a6fa5;
            --secondary-color: #6c757d;
            --success-color: #28a745;
            --warning-color: #ffc107;
            --danger-color: #dc3545;
            --light-bg: #f8f9fa;
            --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        body {
            background-color: #f5f7fa;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            padding-bottom: 50px;
        }
        
        .header {
            background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
            color: white;
            padding: 2rem 0;
            margin-bottom: 2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .calculator-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .card {
            border: none;
            border-radius: 10px;
            box-shadow: 1px 1px 5px 4px rgb(77 97 241 / 11%);
            margin-bottom: 20px;
            transition: transform 0.3s;
			border: 2px solid #0447fb1c;
        }
        
        .card:hover {
            transform: translateY(-5px);
        }
        
        .card-header {
            background-color: var(--primary-color);
            color: white;
            border-radius: 10px 10px 0 0 !important;
            font-weight: 600;
            padding: 1rem 1.25rem;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .btn-primary:hover {
            background-color: #3a5a8a;
            border-color: #3a5a8a;
        }
        
        .selection-btn {
            margin: 5px;
            padding: 10px 15px;
            border-radius: 8px;
            transition: all 0.2s;
        }
        
        .selection-btn.active {
            background-color: var(--primary-color);
            color: white;
            transform: scale(1.05);
        }
        
        .progress-bar {
            background-color: var(--primary-color);
        }
        
        .result-card {
            border-left: 5px solid var(--primary-color);
        }
        
        .army-type-badge {
            font-size: 0.8rem;
            padding: 5px 10px;
            border-radius: 20px;
            margin-right: 5px;
        }
        
        .strength-indicator {
            height: 8px;
            border-radius: 4px;
            background-color: #e9ecef;
            overflow: hidden;
        }
        
        .strength-fill {
            height: 100%;
            background-color: var(--success-color);
        }
        
        .comparison-positive {
            color: var(--success-color);
            font-weight: bold;
        }
        
        .comparison-negative {
            color: var(--danger-color);
            font-weight: bold;
        }
        
        .step-indicator {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            position: relative;
        }
        
        .step-indicator::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #e0e0e0;
            z-index: 1;
        }
        
        .step {
            position: relative;
            z-index: 2;
            text-align: center;
            flex: 1;
        }
        
        .step-circle {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #e0e0e0;
            color: #999;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            font-weight: bold;
        }
        
        .step.active .step-circle {
            background-color: var(--primary-color);
            color: white;
        }
        
        .step-label {
            font-size: 0.9rem;
            color: #999;
        }
        
        .step.active .step-label {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .section-title {
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 10px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .hidden {
            display: none;
        }
        
        .summary-table th {
            background-color: #f8f9fa;
            font-weight: 600;
        }
        
        .recommendation-box {
            background-color: #e8f4ff;
            border-left: 4px solid var(--primary-color);
            padding: 5px;
            border-radius: 0 8px 8px 0;
            margin: 15px 0;
        }
        
        @media (max-width: 768px) {
            .step-label {
                font-size: 0.8rem;
            }
            
            .card-header {
                font-size: 1.1rem;
            }
        }






/* Add to your existing style.css */
.category-section {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    background-color: #f8f9fa;
}

.category-section:hover {
    background-color: #f1f3f5;
}

.bonus-row {
    margin-bottom: 10px;
}

.bonus-row label {
    font-size: 0.9rem;
    font-weight: 500;
}

.section-title {
    color: #495057;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 8px;
}



/* Add to style.css */
.table-sm th, .table-sm td {
    vertical-align: middle;
}

.fw-bold {
    font-weight: 600 !important;
}

.text-warning {
    color: #fd7e14 !important;
}

.text-danger {
    color: #dc3545 !important;
}

.text-success {
    color: #198754 !important;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}


