﻿/* ================================
   LOGIN BUTTON PRI NADPISE
   ================================ */

.login-btn--small {
    background-color: #312c6d;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.2;
    padding: 4px 6px; /* minimálny padding */
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: auto; /* ← dôležité */
    min-width: unset; /* ← reset Bootstrap btn */
    max-width: none;
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

    /* Ikonka */
    .login-btn--small i {
        font-size: 13px;
        line-height: 1;
    }

    /* Hover / focus */
    .login-btn--small:hover,
    .login-btn--small:focus {
        background-color: #252055;
        color: #ffffff;
        text-decoration: none;
    }

/* 📱 MOBILE – iba ikonka */
@media (max-width: 767px) {
    .login-btn--small .login-btn-text {
        display: none !important;
    }

    .login-btn--small {
        padding: 4px 5px; /* ešte menšie na mobile */
    }
}
