/* School Banner Widget */
.educare-school-banner {
    margin-bottom: 30px;
    text-align: center;
}

.school-logo {
    max-width: 200px;
    height: auto;
    margin: 0 auto 15px;
}

.school-logo img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.school-name {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.school-address {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

/* Student Info Widget */
.educare-student-info {
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.student-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.student-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.student-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.student-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.student-info-label {
    font-size: 14px;
    color: #666;
}

.student-info-value {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* Subject Marks Widget */
.educare-subject-marks {
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.educare-subject-marks table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.educare-subject-marks th,
.educare-subject-marks td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.educare-subject-marks th {
    font-weight: 600;
    background: #f5f5f5;
}

.educare-subject-marks tr:last-child td {
    border-bottom: none;
}

/* Result Status Widget */
.educare-result-status {
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.status-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.status-text {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.status-message {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

/* Remarks Widget */
.educare-remarks {
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.remarks-section {
    margin-bottom: 20px;
}

.remarks-section:last-child {
    margin-bottom: 0;
}

.remarks-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.remarks-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Ratings Widget */
.educare-ratings {
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ratings-section {
    margin-bottom: 20px;
}

.ratings-section:last-child {
    margin-bottom: 0;
}

.ratings-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.ratings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.rating-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 4px;
}

.rating-label {
    font-size: 14px;
    color: #666;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars i {
    font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .student-info-grid {
        grid-template-columns: 1fr;
    }

    .ratings-grid {
        grid-template-columns: 1fr;
    }

    .educare-subject-marks {
        padding: 15px;
    }

    .educare-subject-marks th,
    .educare-subject-marks td {
        padding: 8px;
    }
} 