.required-cabinet-setting {
    color: white;
    background: red;
    /*border: 1px solid red;*/
}

.logout-form {
    /*border: 1px solid red;*/
    display: inline-block;
}

.logout-form button {
    /*border: 1px solid red;*/
    border: none;
    background: none;
    padding: 0;
    color: #007bff;
    cursor: pointer;
}

.logout-form button:hover {
    color: #0056b3;
    text-decoration: underline;
}

.overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.overlay div {
    position: absolute;
    top: 50%;
    left: 50%;
}

.ui-tooltip {
    font-family: Gilroy;
    font-size: 11px;
    white-space: pre-line;
}

.ui-tooltip-content {
    white-space: pre-line;
}

.required:after {
    content: " *";
    color: red;
}

.field input{
    width: 100%;
}

.field {
    max-width: 650px;
    margin-bottom: 10px;
}

.cabinet-menu{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: start;
    padding-left: 25%;
}

.cabinet-sub-menu{
    display: flex;
    flex-direction: column;    
    justify-content: start;
    align-items: center;    
}

.cabinet-menu a.menu-btn{    
    border: 1px solid black;
    border-radius: 5px;
    text-align: center;
    color: black;
    font-size: 20;
    padding: 10 60;
    width: 280px;
}

button.add-row {    
    border: 0;
    margin-top: 15px;
    background: #3498DB;
    color: white;
}

@media screen and (max-width: 725px) {
    .cabinet-menu{
        align-items: center;
        padding-left: 0;
    }
}