/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Description: Child theme for Astra.
Author: Ray
Template: astra
Version: 1.0
*/
/* Student Custom Fields Styling */
.student-custom-fields {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.student-custom-fields h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.student-custom-fields p {
    margin: 10px 0;
    line-height: 1.6;
}

.student-info-table {
    width: 100%;
    border-collapse: collapse;
}

.student-info-table th,
.student-info-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.student-info-table th {
    width: 30%;
    font-weight: 600;
    color: #555;
}
/* ==========================================
   Student Custom Fields Styling
   ========================================== */

.student-custom-info {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.student-custom-info h4 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

.student-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.student-info-item {
    display: flex;
    flex-direction: column;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 6px;
    border-left: 3px solid #0073aa;
}

.student-info-item.full-width {
    grid-column: 1 / -1;
}

.student-info-item .info-label {
    font-weight: 600;
    color: #555;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.student-info-item .info-value {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .student-info-grid {
        grid-template-columns: 1fr;
    }
    
    .student-custom-info {
        padding: 15px;
    }
}