/* CHAT CONTAINER */
#chat-container {
    border: 1px solid #334155;
    max-width: 900px;
    padding: 15px;
    margin: 20px auto;
    background: #0b1220;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

/* CHAT BOX */
#chat-box {
    height: 300px;
    overflow-y: auto;
    border: 1px solid #334155;
    margin-bottom: 10px;
    padding: 10px;
    background: #111827;
    border-radius: 8px;
}

/* INPUT */
#chat-input {
    width: 75%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #334155;
    background: #0b1220;
    color: #fff;
}

#chat-input:focus {
    outline: none;
    border-color: #3b82f6;
}

/* BUTTON */
#chat-send {
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    background: #22c55e;
    color: white;
    cursor: pointer;
    margin-left: 5px;
}

#chat-send:hover {
    background: #16a34a;
}

/* MESSAGES */
#chat-box div {
    padding: 6px;
    margin-bottom: 5px;
    border-radius: 5px;
    background: #1e293b;
    color: #e2e8f0;
}

#chat-container input[type="text"],
#chat-container input[type="password"] {
    color: #000;
    background-color: #fff;
}

#chat-container input::placeholder {
    color: #777;
}

/* jos sinulla on dark theme */
body.dark #chat-container input[type="text"],
body.dark #chat-container input[type="password"] {
    color: #fff;
    background-color: #222;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    width: 100%;
    padding-right: 40px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    cursor: pointer;
    user-select: none;
    font-size: 16px;
}
