/* =========================================================
   BUSSKM - utilities.css
   Clases de apoyo / Helpers
   ========================================================= */

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.text-left {
    text-align: left !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-success {
    color: var(--success) !important;
}

.text-danger {
    color: var(--danger) !important;
}

.text-warning {
    color: var(--warning) !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 4px !important;
}

.mt-2 {
    margin-top: 8px !important;
}

.mt-3 {
    margin-top: 14px !important;
}

.mt-4 {
    margin-top: 24px !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 4px !important;
}

.mb-2 {
    margin-bottom: 8px !important;
}

.mb-3 {
    margin-bottom: 14px !important;
}

.mb-4 {
    margin-bottom: 24px !important;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

/* Company badge utilities */
.company-badge {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--surface) 72%, transparent);
    border: 1px solid color-mix(in srgb, var(--border) 75%, transparent);
}

.company-title {
    font-size: 13px;
    letter-spacing: .3px;
    font-weight: 700;
    line-height: 1.2;
    opacity: .95;
}

.company-exit {
    display: inline-block;
    margin-top: 6px;
    font-size: 12px;
    text-decoration: none;
    opacity: .9;
}

.company-exit:hover {
    opacity: 1;
    text-decoration: underline;
}

.hint {
    color: var(--text-muted);
    font-size: 12px;
}