/* ==========================================================================
   ESTILOS EXCLUSIVOS PARA DASHBOARD DOCENTE (PALETA #F5A927)
   ========================================================================== */

/* Login Box para Docentes */
.login-box-doc {
    max-width: 450px;
    margin: 8vh auto;
    text-align: left;
    border-top: 6px solid #F5A927;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-login-doc {
    width: 100%;
    background: #F5A927;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.1em;
    margin-top: 10px;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    transition: background 0.2s;
}

.btn-login-doc:hover {
    background: #d9921e;
}

/* Cabecera y Títulos del Dashboard */
.header-docente {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #F5A927;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.titulo-docente {
    text-align: center;
    color: #F5A927;
    margin-top: 10px;
    margin-bottom: 25px;
    font-size: 2.2em;
    font-weight: bold;
}

.btn-salir-docente {
    background: #dc3545;
    color: #ffffff !important;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: bold;
    transition: background 0.2s;
}

.btn-salir-docente:hover {
    background: #c82333;
}

/* Navegación y Botonera Naranja */
.nav-docente {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.btn-nav-docente {
    background-color: #F5A927;
    color: #ffffff;
    border: none;
    padding: 12px 22px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    font-size: 1.05em;
    text-decoration: none;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.btn-nav-docente:hover, .btn-nav-docente.activo {
    transform: translateY(-4px);
    background-color: #d9921e;
    box-shadow: 0 5px 12px rgba(245, 169, 39, 0.3);
    color: #ffffff;
}

.btn-nav-docente:active {
    transform: translateY(0);
}

/* Contenedor del Iframe */
.iframe-container {
    width: 100%;
    height: 800px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    background: #fff;
}

.iframe-content {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}