
.plana-docente h1 {
    color: black;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}
.docente-card {
    background: white;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}
.docente-card:hover {
    transform: translateY(-5px);
}
.docente-foto {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: -60px;
    border: 5px solid white;
    background: #f1f1f1;
}
.docente-nombre {
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
    color: #2b2b2b;
}
.docente-cargo {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}
.docente-btn {
    background: #4CAF50;
    color: white;
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 15px;
    text-decoration: none;
    display: inline-block;
}
.docente-btn:hover {
    background: #45a049;
}
.sidebar-box {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.sidebar-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-box ul li {
    border-bottom: 1px solid #ddd;
}
.sidebar-box ul li a {
    display: block;
    padding: 10px;
    color: #2b2b2b;
    text-decoration: none;
}
.sidebar-box ul li a:hover {
    background: #f5f5f5;
    color: #007bff;
}

