/* ========== ÜLDINE ========== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
}

/* Versiooni number – alati vasakus all nurgas */
.version-tag {
    position: fixed;
    left: 12px;
    bottom: 12px;
    color: rgba(255,255,255,0.95);  /* peaaegu valge */
    font-size: 17px;                /* suurem tekst */
    font-weight: bold;
    z-index: 9999;
    text-shadow: 0 0 8px black;
}

/* ========== LOGIN BACKGROUND ========== */
.bg-login {
    position: fixed;
    inset: 0;
    background: url('../img/cave.jpg') center/cover no-repeat;
    filter: brightness(0.60);
    z-index: -1;
}

/* LOGIN wrapper */
.login-wrapper {
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding-top: 40px;
}

/* LOGIN LOGO üles tõstetud */
.login-logo {
    width: 360px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.7));
}

/* LOGIN BOX */
.login-box {
    width: 380px;
    background: rgba(0,0,0,0.65);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.login-box h2 {
    margin-bottom: 20px;
}

/* LOGIN FIELD TEXT */
.login-label {
    color: #ddd;
    text-align: left;
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}

/* INPUTS */
.login-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: none;
}

/* BUTTON */
.login-box button {
    width: 100%;
    padding: 12px;
    background: #1e90ff;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.login-box button:hover {
    background: #0b78d4;
}

/* ========== DASHBOARD BACKGROUND ========== */
.bg-dashboard {
    position: fixed;
    inset: 0;
    background: url('../img/winter_cave.jpg') center/cover no-repeat;
    filter: brightness(0.55);
    z-index: -1;
}

/* ========== SIDEBAR ========== */
.sidebar {
    width: 220px;
    height: 100vh;
    background: rgba(0,0,0,0.55);
    padding: 25px;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 0 15px rgba(0,0,0,0.7);
}

.sidebar h3 {
    margin-top: 0;
    margin-bottom: 15px;
    text-shadow: 0 0 5px black;
}

.sidebar a {
    color: #eee;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    font-size: 16px;
}

.sidebar a:hover {
    color: #79c3ff;
}

/* ========== CONTENT AREA ========== */
.content {
    margin-left: 250px;
    padding: 30px;
    text-shadow: 0 0 8px black;
}

.content h1 {
    margin-top: 0;
}

/* ========== FORMS ========== */
form label {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

form input, form button {
    padding: 10px;
    margin-top: 5px;
    border-radius: 6px;
    width: 280px;
    border: none;
}

form button {
    background: #1e90ff;
    color: white;
    cursor: pointer;
}

form button:hover {
    background: #0c74c9;
}
/* CHAT AREA SCROLL FIX */
.chat-box {
    white-space: pre-wrap;
    text-shadow: 0 0 6px black;
    font-size: 15px;
}
