/* Join Us Pages Styling */

/* .enrollment-page,
.volunteering-page {
    margin-bottom: 100px;
} */

.hero-section {
    background: #ff9600;
    color: white;
    padding: 80px 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.agreement-section,
.info-section {
    margin-bottom: 60px;
}

.agreement-content,
.info-content {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.agreement-content h2,
.info-content h2 {
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.agreement-content h3,
.info-content h3 {
    color: #555;
    margin-top: 30px;
    margin-bottom: 15px;
}

.agreement-content h4,
.info-content h4 {
    color: #666;
    margin-top: 25px;
    margin-bottom: 10px;
}

.agreement-text,
.info-text {
    line-height: 1.8;
    color: #444;
}

.agreement-text ul,
.agreement-text ol,
.info-text ul,
.info-text ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.blank-line {
    border-bottom: 1px solid #333;
    padding: 0 10px;
    min-width: 150px;
    display: inline-block;
}

.form-section {
    background: #fff;
}

.form-container {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.form-section-header {
    background: #ff9600;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 30px 0 20px 0;
}

.form-section-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

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

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

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    transition: border-color 0.3s ease;
}


.btn:first-child:active {
    background-color: #ff9600;
    border-color: #ff9600;
    color: #fff;
}

.alert {
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .agreement-content,
    .info-content,
    .form-container {
        padding: 20px;
    }

    .form-section-header {
        padding: 10px 15px;
    }

    .form-section-header h3 {
        font-size: 1rem;
    }
}

/* Admin Table Styling */
.table-responsive {
    overflow-x: auto;
}

.table th {
    background-color: #f8f9fa;
    border-top: none;
    font-weight: 600;
}

.badge-success {
    background-color: #28a745;
}

.badge-danger {
    background-color: #dc3545;
}

/* Card Styling for Admin Views */
.card-header h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.card-body {
    padding: 15px;
}

.table-borderless td {
    padding: 8px 0;
    border: none;
}

.table-borderless td:first-child {
    font-weight: 600;
    color: #555;
    width: 40%;
}