﻿body {
}

.fondoColorTitulo {
    color: white;
    background-color: #52be80;
    font-weight: bold;
}

.tablahija td {
    color: black;
    background-color: #d5f5e3;
}

.tablahija2 td {
    color: black;
    background-color: #82e0aa;
}

.fondoColorNoTitulo3 {
    color: black;
    background-color: #d5f5e3;
}

.textoActividadPadre {
    content: "hola";
}

.titulos {
    color: white !important;
}

a.my-class {
    color: white
}

.ir-arriba {
    display: none;
    padding: 20px;
    background: #024959;
    font-size: 20px;
    color: #ffffff;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

/* ==========================================
Single-colored icons can be modified like so:
.icon-name {
  font-size: 32px;
  color: red;
}
========================================== */

/* 1. Fuente principal y smooth */
body {
    font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
    background: #f7f8fa;
    color: #2a2928;
    font-size: 16px;
    letter-spacing: 0.01em;
    transition: background 0.3s;
}

/* 2. Cabecera y sidebar modernizadas */
.navbar, .navbar-expand, .navbar-dark, .navbar-light {
    background: rgba(25, 27, 34, 0.95) !important;
    border-bottom: 2px solid #ffb357;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 10px;
}

.navbar-brand, .navbar-nav .nav-link {
    color: #ff8c24 !important;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: color 0.2s;
    padding-left: 10px;
}

    .navbar-nav .nav-link:hover {
        color: #ffb357 !important;
    }

/* 3. Tarjetas glassy y flotantes */
.card, .container > .card, .content-panel {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(6px);
    border-radius: 22px;
    box-shadow: 0 6px 24px -6px rgba(24,22,47,0.12), 0 2px 6px rgba(0,0,0,0.04);
    border: none;
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s;
}

    .card:hover, .content-panel:hover {
        box-shadow: 0 12px 36px -6px rgba(24,22,47,0.16), 0 2px 12px rgba(0,0,0,0.08);
    }

/* 4. Botones modernos SEN */
.btn {
    border-radius: 10px;
    font-weight: 600;
    padding: 0.55em 1.2em;
    font-size: 1.07em;
    letter-spacing: 0.02em;
    border: none;
    box-shadow: 0 1px 8px rgba(255,140,36,0.10);
    transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}

.btn-primary {
    background: linear-gradient(90deg,#ff8c24 0%, #ffb357 100%);
    color: #fff;
}

    .btn-primary:hover, .btn-primary:focus {
        background: linear-gradient(90deg,#ffb357 0%, #ff8c24 100%);
        color: #fff;
        box-shadow: 0 3px 16px #ff8c2450;
    }

.btn-danger {
    background: #e15a5a;
    color: #fff;
}

    .btn-danger:hover {
        background: #c14040;
    }

.btn-warning {
    background: #ffe088;
    color: #4a351a;
}

    .btn-warning:hover {
        background: #ffb357;
        color: #fff;
    }

/* 5. Etiquetas, badges y tablas */
.badge, .label, .table .badge {
    background: #ffe5d0;
    color: #ff8c24;
    border-radius: 6px;
    font-size: 0.96em;
    padding: 0.32em 0.8em;
}

.table {
    background: rgba(255,255,255,0.94);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(34,30,67,0.06);
}

    .table th {
        background: #ffb35722;
        color: #20252c;
        font-weight: 700;
        font-size: 1em;
    }

.table-striped tbody tr:nth-of-type(odd) {
    background: #fff6ee;
}

/* 6. Inputs y formularios */
.form-control, .form-select {
    border-radius: 12px;
    border: 1.5px solid #ffb35744;
    background: #fff;
    transition: border 0.2s, box-shadow 0.2s;
}

    .form-control:focus, .form-select:focus {
        border-color: #ff8c24bb;
        box-shadow: 0 1px 8px #ffb35755;
    }

.form-label {
    font-weight: 600;
    color: #ff8c24;
    margin-bottom: 0.3em;
    font-size: 1.03em;
}

/* 7. Iconos y tarjetas menú inicio */
.menu-card, .dashboard-card {
    background: rgba(255,255,255,0.98);
    border-radius: 18px;
    box-shadow: 0 4px 18px -4px #ffb35744;
    padding: 2rem 1rem;
    margin-bottom: 1.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

    .menu-card:hover {
        box-shadow: 0 8px 32px -6px #ff8c2440;
        transform: translateY(-2px) scale(1.02);
    }

/* 8. Sombra general a todos los paneles principales */
.container, .content-panel, .dashboard-card, .card {
    box-shadow: 0 3px 22px -7px #b37d5260;
}

/* 9. Scrollbar personalizada */
::-webkit-scrollbar {
    width: 9px;
    background: #fff2e2;
}

.body-content{
    padding-right: 0px !important;
    padding-left: 0px !important;
}

::-webkit-scrollbar-thumb {
    background: #ff8c24cc;
    border-radius: 5px;
}

/* 10. Efectos hover en filas de tabla */
.table-hover tbody tr:hover {
    background: #ffb35721 !important;
    cursor: pointer;
}

/* 11. Footer minimalista */
footer {
    color: #c7b2a1;
    font-size: 0.98em;
    border-top: 1px solid #ffb35725;
    background: none !important;
    padding: 0.7em 0 0.2em 0;
    text-align: center;
}