/**
 * Alkalois Custom — Bandeau Logos stylesheet
 * ==========================================
 * 1. Manager list thumbnails (bl-row)
 * 2. Manager text inputs (bl-text-input)
 *
 * Note: the public slider CSS (track animation, offsets, gap)
 * is kept inline in bandeau-logos.php because it depends on
 * PHP-interpolated values ($uid, $gap).
 */


/* =============================================
   1. Manager list thumbnails
   ============================================= */

.bl-row {
    align-items: center;
    gap: 10px;
}

.bl-row-thumb {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 3px;
    flex-shrink: 0;
}

.bl-row-thumb--empty {
    display: inline-block;
    visibility: hidden;
}


/* =============================================
   2. Manager text inputs
   ============================================= */

.bl-text-input {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #f5f5f5;
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color .2s;
    border-radius: 0;
}

.bl-text-input:focus {
    border-color: #fff;
}
