/* ICON BUTTONS */
.icon-btn {
    font-size: 18px;
    color: #aaa;
    cursor: pointer;
    transition: 0.2s;
}

.icon-btn:hover {
    color: #fff;
}

/* USER BLOCK */
.user-block {
    display: flex;
    align-items: center;
}

/* LOGIN BUTTON */
.btn-login {
    background: #00c896;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.btn-login:hover {
    background: #00b383;
}

/* LOGOUT BUTTON */
.btn-logout {
    background: #00c896;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.btn-logout:hover {
    background: #00b383;
}

.login-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.login-box {
    width: 420px;
    background: #1c1c1c;
    border-radius: 8px;
    padding: 20px;
}

/* HEADER */
.login-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tab {
    color: #aaa;
    cursor: pointer;
}

.tab.active {
    color: #fff;
}

.close {
    cursor: pointer;
}

/* INPUT STYLE (DLE FIX) */
.login-content input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
}

/* BUTTON */
.login-content input[type="submit"] {
    background: #00c896;
    border: none;
    cursor: pointer;
}