/* ===== BARRE FIXE HAUT ===== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: #0d6efd; /* bleu SOBASO */
    color: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: background 0.3s ease;
}

.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 12px;
}

/* Logo */
.logo {
    height: 42px;
    width: auto;
    border-radius: 25px;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Nom de l’entreprise */
.company-name {
    font-size: 22px;
    font-weight: 700;
    margin-left: 12px;
    letter-spacing: 0.5px;
}

/* Espace flexible entre gauche et droite */
.spacer {
    flex: 1;
}

.left {
display: flex;
  align-items: center;
  gap: 12px;
}

/* Nom du technicien */
.technician-name {
    font-size: 16px;
    font-weight: 500;
}