/* Reset básico */
.eh-dashboard * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Contenedor principal */
.eh-dashboard {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    max-width: 900px;
    margin: 30px auto;
}

/* Barra de pestañas */
.eh-tabs {
    display: flex;
    background-color: #f8f8f8;
    border-bottom: 1px solid #ddd;
}

.eh-tab {
    flex: 1;
    padding: 16px 20px;
    text-align: center;
    cursor: pointer;
    background-color: #f8f8f8;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 500;
    border-right: 1px solid #eee;
    color: #555;
}

.eh-tab:last-child {
    border-right: none;
}

.eh-tab:hover {
    background-color: #eaeaea;
    color: #000;
}

.eh-tab.active {
    background-color: #02ECB2;
    color: #fff;
    font-weight: bold;
}

/* Contenido de pestañas */
.eh-content {
    padding: 30px;
}

.eh-tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.eh-tab-content.active {
    display: block;
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .eh-tabs {
        flex-direction: column;
    }

    .eh-tab {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .eh-tab:last-child {
        border-bottom: none;
    }
}
