/* candidate.css */
body {
    font-family: 'Heebo', 'Nunito', sans-serif;
    background-color: #f4f4f4;
}

.candidate-form-container {
    margin: 80px auto 40px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-main-title {
    color: #06bbcc;
    font-weight: 700;
    margin-bottom: 30px;
}

.form-section-title {
    background: linear-gradient(to right, #06bbcc, #0495a3);
    color: white;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-group label {
    font-weight: 500;
    color: #333;
}

.add-btn {
    background: #fff;
    color: #06bbcc;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.add-btn:hover {
    background: #e0f8fa;
}

.remove-btn {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
}

.remove-btn:hover {
    background: #c82333;
}

.btn-submit-modern {
    background: #06bbcc;
    color: white;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 5px;
    border: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-submit-modern:hover {
    background: #0495a3;
    color: white;
}

.invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 0.25rem;
}

.is-invalid ~ .invalid-feedback {
    display: block;
}

.card {
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.card-header {
    border-bottom: none;
}
