.bx-session-message{
    display: none!important;
}
.sign-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}
 .user-dropdown {
     position: relative;
     display: inline-block;
 }

.user-dropdown__menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    min-width: 160px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    padding: 8px;
    z-index: 99999;
}

.user-dropdown.active .user-dropdown__menu {
    display: block;
}

.user-dropdown__item {
    display: block;
    padding: 10px 12px;
    color: #111;
    text-decoration: none;
    border-radius: 8px;
    white-space: nowrap;
}

.user-dropdown__item:hover {
    background: #f3f4f6;
}

.sign-modal__content {
    background: #fff;
    width: 420px;
    margin: 8% auto;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    position: relative;
    font-family: Arial;
}

.sign-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.sign-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.sign-label {
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
    margin-top: 10px;
}

.sign-input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

.sign-input:focus {
    border-color: #3b82f6;
    outline: none;
}

.sign-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0;
    font-size: 13px;
}
.file-upload__box {
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    padding: 14px;
    text-align: center;
    cursor: pointer;
    color: #64748b;
    background: #f8fafc;
    transition: all 0.2s ease;
}

.file-upload__box:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    background: #eff6ff;
}
.sign-btn {
    width: 100%;
    background: #1565C0;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}
.file-upload__box {
    cursor: pointer;
}
.sign-btn:hover {
    background: #1565C0;
}

.sign-modal__close {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
    font-size: 18px;
}