* {
    font-family: "Vazirmatn" !important;
    font-weight: normal;
    color: #323234;
}


/* کل اسکرول‌بار */
::-webkit-scrollbar {
    width: 10px;
    height: 10;
}

/* مسیر اسکرول‌بار (Track) */
::-webkit-scrollbar-track {
    background: transparent;
    border: 1px solid #ffffff3a;
    border-radius: 5px;
    margin: 1vh 0 1vh 1vw;
}

/* خود اسکرول (Thumb) */
::-webkit-scrollbar-thumb {
    background: #ffffff2e;
    border-radius: 10px;
}

input#username, input#password {
    color: #323234;
}

.space-div {
    margin-bottom: 20vh;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    direction: rtl;
}

.dock, .profile-btn, .profile-panel {
    position: fixed;
    top: 20px;
    display: flex;
    background: #ffffff;
    border: 1px solid #DCEBF9;
    border-radius: 0.5rem;
    padding: 10px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.020);
    z-index: 101;
    flex-direction: row;
}

.icon {
    width: 6.5rem;
    height: 3rem;
    line-height: 3rem;
    margin: 0 10px;
    cursor: pointer;
    z-index: 103;
    transition-duration: 300ms;
    text-align: center;
}

.icon:hover {
    transform: translateY(-10%);
}

.icon img {
    width: 100%;
    height: 100%;
}

span.clickable {
    cursor: pointer;
}
.profile-btn , .profile-panel{
    top: 20px;
    left: 20px;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    transition-duration: 300ms;
}
.profile-btn:hover {
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}
.profile-btn.hide {
    display: none;
}

.profile-panel {
    display: block;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    visibility: hidden;

    width: 200px;
    height: 290px;
    cursor: default;
    padding: 15px;
}
.profile-panel span {
    font-size: 16px;
    color: #323234;
}

.profile-panel.show {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

.window-container {
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.window {
    background: #fff;
    border: 1px solid #DCEBF9;
    border-radius: 0.5rem;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.020);
    padding: 20px 40px;
    width: 80vw;
    max-width: 80vw;
    max-height: 75vh;
    overflow: auto;
    display: none;
}

.window.active {
    display: block;
}
/***************************************/
h2, h3 {
    color: #323234;
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 25px;
    text-align: center;
}
h3 {
    font-size: 20px;
}
form input, form textarea, form select {
    margin-top: 10px !important;
    line-height: 30px !important;
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-color: #DCEBF9 !important;
    border-radius: 7px !important;
    padding: 0 5px !important;

}
form label {
    font-size: 16px !important;
}
form select {
    height: 30px;
    padding: 3px 5px;
}
form input, form select {
    border: none;
    border-bottom: 1px solid #DCEBF9;
    width: 97%;
}
input:disabled {
    color: #7a7b85 !important;
    -webkit-text-fill-color: #ffffff;
    background-color: rgba(116, 116, 116, 0.2);
    opacity: 1 !important; 
}
form button, div.button, #user-manage button {
    color: #323234;
    width: 20%;
    font-size: 16px;
    cursor: pointer;
    float: left;
    background-color: rgba(255, 255, 255, 0.123);
    border: 1px solid #DCEBF9;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.24);
}
div.button {
    width: 15%;
    text-align: center;
}
