/**
 * Candidate Pricing Styles
 */

.candidate-pricing-item {
    margin-bottom: 8px;
    padding: 8px 12px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #007cba;
}

.candidate-pricing-item strong {
    color: #333;
    font-weight: 600;
}

.candidate-pricing-container {
    background: #fff;
    border: 1px solid #e1e5e9;
    border-radius: 6px;
    padding: 15px;
    margin: 15px 0;
}

.candidate-pricing-header {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e1e5e9;
}

.candidate-pricing-calculator {
    background: #f8f9fa;
    border: 1px solid #e1e5e9;
    border-radius: 4px;
    padding: 15px;
    margin-top: 15px;
}

.candidate-pricing-calculator input[type="number"] {
    width: 100px;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin: 0 5px;
}

.candidate-pricing-calculator button {
    background: #007cba;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 3px;
    cursor: pointer;
    margin-left: 10px;
}

.candidate-pricing-calculator button:hover {
    background: #005a87;
}

.candidate-pricing-result {
    margin-top: 10px;
    padding: 10px;
    background: #e7f3ff;
    border: 1px solid #b3d9ff;
    border-radius: 4px;
    font-weight: 600;
    color: #005a87;
}

.candidate-pricing-required {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
}

/* Admin form styles */
.form-field input[type="number"][required] {
    border-color: #dc3545;
}

.form-field input[type="number"][required]:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 1px #dc3545;
}

/* Responsive */
@media (max-width: 768px) {
    .candidate-pricing-calculator input[type="number"] {
        width: 80px;
        margin: 5px 0;
    }
    
    .candidate-pricing-calculator button {
        margin: 10px 0 0 0;
        width: 100%;
    }
} 