﻿    /* Badges base */
.badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.375rem;
}

/* Etiquetas por color (label-style) */
.bg-label-primary {
    background-color: rgba(59, 130, 246, 0.12); /* azul claro */
    color: #3b82f6;
}

.bg-label-success {
    background-color: rgba(34, 197, 94, 0.12); /* verde claro */
    color: #22c55e;
}

.bg-label-danger {
    background-color: rgba(239, 68, 68, 0.12); /* rojo claro */
    color: #ef4444;
}

.bg-label-warning {
    background-color: rgba(234, 179, 8, 0.12); /* amarillo claro */
    color: #eab308;
}

.bg-label-info {
    background-color: rgba(14, 165, 233, 0.12); /* celeste claro */
    color: #0ea5e9;
}

.bg-label-secondary {
    background-color: rgba(107, 114, 128, 0.12); /* gris claro */
    color: #6b7280;
}

/* Espaciado de margen (end) */
.me-1 {
    margin-right: 0.25rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}
/* Text colors */
.text-error {
    color: #ef4444; /* rojo */
}

.text-success {
    color: #22c55e;
}

.text-warning {
    color: #eab308;
}

/* Backgrounds */
.bg-error-10 {
    background-color: rgba(239, 68, 68, 0.1); /* rojo claro */
}

.bg-error-15 {
    background-color: rgba(239, 68, 68, 0.15); /* rojo mÃ¡s opaco */
}

.bg-success-10 {
    background-color: rgba(34, 197, 94, 0.1);
}

.bg-success-15 {
    background-color: rgba(34, 197, 94, 0.15);
}

.bg-warning-10 {
    background-color: rgba(234, 179, 8, 0.1);
}

.bg-warning-15 {
    background-color: rgba(234, 179, 8, 0.15);
}
/* Dark mode fallback (puede requerir script si no usÃ¡s Tailwind o media queries) */
@media (prefers-color-scheme: dark) {
    .dark\:bg-error-15 {
        background-color: rgba(239, 68, 68, 0.15);
    }
    .dark\:bg-success-15 {
        background-color: rgba(34, 197, 94, 0.15);
    }
    .dark\:bg-warning-15 {
        background-color: rgba(234, 179, 8, 0.15);
    }
}
</style>		<link href="templates/gmu/templates/secret/css/bootstrap.min.css" rel="stylesheet" media="screen">
