div.bx-system-auth-form span.bx-auth-secure {background-color:#FFFAE3; border:1px solid #DEDBC8; padding:2px; display:inline-block; vertical-align:bottom; margin-top:-1px;}
div.bx-system-auth-form div.bx-auth-secure-icon {background-image:url(images/sec.png); background-repeat:no-repeat; background-position:center; width:19px; height:18px;}
div.bx-system-auth-form div.bx-auth-secure-unlock {background-image:url(images/sec-unlocked.png);}
.profile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.profile-info {
    display: flex;
    flex-direction: column;
    margin-right: 10px;
}
.profile-name {
    font-weight: bold;
    font-size: 16px;
}
.profile-login {
    color: #6c757d;
    font-size: 14px;
}
.profile-link {
    /*color: #007bff;*/
    text-decoration: none;
    font-size: 14px;
}
.profile-link:hover {
    text-decoration: underline;
}
.logout-form {
    display: flex;
    align-items: center;
}
.logout-button {
    font-size: 13px;
    background: #ffc800;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    opacity: 1;
}
.logout-button:hover {
    opacity: 0.7;
}
.logout-btn-mobile{
    display: none;
}
.profile-link-mobile{
    display: none;
}
@media (max-width: 767px) {
    .profile-link{
        display: none;
    }
    .profile-link-mobile{
        display: block;
    }
    .logout-btn-desk{
        display: none;
    }
    .logout-btn-mobile{
        display: block;
    }
}
/* Стили для алертов */
.alert-form {
    position: fixed!important;
    top: 40px!important; /* Расстояние от верхней части экрана */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050; /* Обеспечивает, что алерт будет поверх других элементов */
    width: 90%; /* Ширина алерта */
    max-width: 600px; /* Максимальная ширина */
    margin: 0;
    opacity: 1; /* Устанавливаем начальную прозрачность */
    transition: opacity 0.5s ease!important; /* Плавное исчезновение */
}

/* Когда алерт будет скрыт */
.alert.hide {
    opacity: 0;
}
