/* Main Layout Styles */
#wrapper {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

#leftpanel {
    width: 280px;
    float: left;
    background: #f8f9fa;
    padding: 20px;
    border-right: 2px solid #e9ecef;
    min-height: 600px;
}

#maincontent {
    margin-left: 300px;
    padding: 20px;
}

/* Left Panel Styles */
.principal-section {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dee2e6;
}

.principal-photo {
    width: 200px;
    height: 250px;
    border: 3px solid #2c3e50;
    border-radius: 5px;
    margin: 0 auto 15px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #666;
    overflow: hidden;
}

.principal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.principal-section h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 18px;
}

.login-section, .admissions-section, .admin-section {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.login-section h3, .admissions-section h3, .admin-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 16px;
}

.btn-login, .btn-register, .btn-admin {
    display: inline-block;
    padding: 10px 20px;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.btn-login:hover, .btn-register:hover, .btn-admin:hover {
    background: #34495e;
    text-decoration: none;
    color: white;
}

.admissions-highlight {
    background: #e74c3c;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
    font-weight: bold;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    #leftpanel {
        width: 100%;
        float: none;
        margin-bottom: 20px;
    }
    
    #maincontent {
        margin-left: 0;
        padding: 10px;
    }
    
    .principal-photo {
        width: 150px;
        height: 180px;
    }
}