/* Chapter Application Form Styles */
.chapter-form {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.chapter-form .form-group {
    margin-bottom: 20px;
}

.chapter-form .card {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 25px;
}

.chapter-form .card-header {
    padding: 12px 20px;
}

.chapter-form h4.text-primary {
    margin-top: 25px;
    margin-bottom: 20px;
    font-weight: 600;
}

.chapter-form .btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
    padding: 10px 30px;
}

.chapter-form .required label:after {
    content: " *";
    color: red;
}

.chapter-form .error-message {
    color: #dc3545;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    background-color: #f8d7da;
}

/* Signature pad styling */
.signature-pad-container {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    background-color: #fff;
    margin-bottom: 10px;
}

.signature-pad {
    border: 1px solid #ccc;
    border-radius: 3px;
    cursor: crosshair;
    display: block;
    width: 100%;
    height: 150px;
    background-color: #fff;
}

.signature-controls {
    text-align: center;
}

.signature-controls button {
    margin: 0 5px;
}

/* Signature field styling for backend form */
.o_field_signature {
    min-height: 150px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
}

/* Success page styling */
.application-success {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: #d4edda;
    border-radius: 5px;
}

.application-success h2 {
    color: #155724;
}

/* Form radio buttons */
.form-check-input {
    margin-top: 0.3rem;
}

.form-check-label {
    margin-left: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .chapter-form {
        padding: 10px;
    }
    
    .signature-pad {
        height: 120px;
    }
}

.application-details {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .chapter-form {
        padding: 10px;
    }
    
    .officer-section, .meeting-details, .application-success {
        padding: 10px;
    }
}
