#sge-mis-servicios {
    max-width: 480px;
    margin: auto;
    padding: 12px;
}

.sge-card {
    background: #fff;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,.06);
}

.sge-card-header {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 8px;
}

.sge-status {
    font-size: .85rem;
    color: #007aff;
}

.sge-card-body p {
    margin: 4px 0;
    font-size: .9rem;
}

#sge-loader,
#sge-end {
    text-align: center;
    padding: 12px;
    color: #666;
}

.hidden {
    display: none;
}

.sge-card {
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
}

.sge-card:active {
    transform: scale(.98);
}

.sge-card-header span:first-child {
    font-size: 1.1rem;
}

.sge-status {
    font-weight: 600;
}

/* Tabs - estado inactivo */
.sge-tab {
    background-color: #6b7280; /* gris oscuro */
    color: #0a0a0a;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
}

/* Tab activo */
.sge-tab.active {
    background-color: #0b6aa2; /* azul actual */
    color: #ffffff;
}

/* Hover solo para inactivos */
.sge-tab:not(.active):hover {
    background-color: #4b5563;
}


