* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 600px;
}

.student-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    overflow: hidden; /* Para que las esquinas de la imagen se ajusten */
}

/* Sección de la Foto */
.photo-section {
    background: #2c3e50;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.profile-img {
    width: 250px;
    height: 400px;
   /* border-radius: 50%;*/
    border: 4px solid #fff;
    object-fit: cover;
}

/* Sección de Información */
.info-section {
    padding: 30px;
    flex: 2;
}

.info-section h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

hr {
    border: 0;
    border-top: 1px solid #eee;
    margin-bottom: 20px;
}

.detail-group {
    margin-bottom: 15px;
}

.label {
    font-size: 0.85rem;
    color: #777;
    text-transform: uppercase;
    font-weight: bold;
}

.value {
    font-size: 1.1rem;
    color: #333;
    margin-top: 2px;
}

/* Badge de Estatus */
.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 5px;
}

.active {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Responsivo para móviles */
@media (max-width: 500px) {
    .student-card {
        flex-direction: column;
    }
    .photo-section {
        padding: 20px;
    }
}