/* Contenedor flexible */
.admin-bauza-container { 
    display: flex; 
    background: #fff; 
    border: 1px solid #ccd0d4; 
    min-height: 500px;
    color: #333;
    text-align: left;
}

/* Sidebar */
.bauza-sidebar { width: 220px; background: #23282d; color: #fff; flex-shrink: 0; }
.sidebar-logo { padding: 20px; text-align: center; background: #191e23; }
.sidebar-logo h2 { color: #00b9eb; margin: 0; font-size: 1.2em; }

.sidebar-nav a { 
    display: flex; 
    align-items: center;
    padding: 15px 20px; 
    color: #eee !important; 
    text-decoration: none !important; 
    border-bottom: 1px solid #32373c; 
}
.sidebar-nav a:hover, .sidebar-nav a.active { background: #00b9eb; color: #fff !important; }
.sidebar-nav .dashicons { margin-right: 10px; }

/* Cuerpo de contenido */
.bauza-main { flex: 1; padding: 25px; background: #f1f1f1; }
.main-header { border-bottom: 2px solid #00b9eb; margin-bottom: 20px; padding-bottom: 10px; }
.main-header h1 { margin: 0; font-size: 1.8em; color: #23282d; }
.main-content-area { background: #fff; padding: 20px; border-radius: 4px; min-height: 300px; }

