.main-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color, #ce2128);
}

.main-menu-button {
    margin: 0 auto;
    border: 1px solid transparent;
    border-radius: 10px;
    background: #f9f9f9;
    transition: all 0.2s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.main-menu-button:hover {
    border: 1px solid #ccc;
    background: #fff;
}

.main-menu-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding-left: 20px;
    gap: 18px;
    cursor: pointer;
}

.main-menu-icon {
    height: 42px;
    width: 42px;
}

.main-menu-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
}

.signature-fieldset .webix_template {
    padding-left: 5px;
    font-size: 14px;
}
.webix_popup_title, .webix_window .webix_win_head {
    background-color: #ce2128;
    color: white;
    font-weight: bold;
}
.webix_button {
    text-transform: uppercase;
}

@media (max-width: 600px) {
    .main-menu-icon {
        height: 42px;
        width: 42px;
    }

    .main-menu-label {
        font-size: 18px;
    }
}