body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #e6e5e3;
    color: black;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content {
    padding: 40px;
    background-color: #f8f9fa;
}

.dashboard-admin { margin-bottom: 30px; text-align: center; }
.titulo-dashboard { font-size: 1.8rem; color: #333; margin-bottom: 5px; }
.subtitulo-dashboard { color: #888; font-size: 0.9rem; }

.kpi-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.kpi-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.kpi-label { color: #666; font-size: 0.85rem; margin-bottom: 10px; }
.kpi-valor { font-size: 2.2rem; margin-bottom: 5px; }
.valor-azul { color: #7cb9ff; }
.valor-verde { color: #2ecc71; }
.valor-rojo { color: #ff5e6c; }
.kpi-info { color: #aaa; font-size: 0.75rem; }

.seccion-tabla {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.tabla-eficiencia {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.tabla-eficiencia th { text-align: left; color: #888; font-weight: normal; padding: 15px; border-bottom: 1px solid #eee; }
.tabla-eficiencia td { padding: 15px; border-bottom: 1px solid #f9f9f9; color: #444; }

.pantalla-proyectos-admin-graficos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.chart-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chart-card img {
    max-width: 100%;
    height: auto;
    margin-top: 15px;
}

.full-width { grid-column: span 2; }

.progress-bar {
    width: 80%;
    background: #eee;
    height: 8px;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
}

.progress { height: 100%; border-radius: 10px; width: 100%;}

.progress.azul { background: #7cb9ff; }
.progress.naranja { background: #ff9900; }
.progress.rojo { background: #ff5e6c; }
.progress.verde { background: #2ecc71; }

.label-progress {font-size: 0.8rem; color: #666;}

.columna-iconos {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
}

h3 {align-self: flex-start;}

#smith { width: 100%; }
#glaxo { width: 85%; }
#price { width: 75%; }
#berkshire { width: 60%; }
#alphabet { width: 45%; }