/* style.css - koko sivuston tyylit */

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('taustakuva.png');
    background-repeat: repeat;
    background-color: #121212;
    color: #eee;
}

a {
    color: #ffa500;
    text-decoration: none;
}

a:hover {
    color: #ffb733;
    text-decoration: underline;
}

nav {
    background: #333;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.6);
    font-weight: 600;
}

nav a {
    color: #fff;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

nav a:hover {
    background: #ffaa00;
    color: orange;
}

nav .logout-link {
    margin-left: auto;
    color: #f00 !important;
}

nav .online-count {
    position: absolute;
    right: 20px;
    background: #222;
    font-weight: bold;
    border-radius: 12px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    font-size: 14px;
    box-shadow: 0 0 10px #ffa500;
}

nav .online-count span.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #0f0;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 6px #0f0;
}

main {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

h1, h2, h3 {
    color: #ffa500;
    text-shadow: 0 0 6px #ffa500;
}

button, .btn, input[type="submit"] {
    background: #ffa500;
    border: none;
    border-radius: 10px;
    color: black;
    padding: 10px 24px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s;
}

button:hover, .btn:hover, input[type="submit"]:hover {
    background: #ffb733;
}

input[type="text"], input[type="password"], input[type="email"] {
    width: 100%;
    max-width: 350px;
    padding: 10px;
    margin: 8px 0 20px 0;
    border-radius: 8px;
    border: 2px solid #555;
    background: #222;
    color: #eee;
    font-size: 16px;
    box-sizing: border-box;
}

label {
    font-weight: bold;
    font-size: 16px;
}

form {
    max-width: 400px;
    margin: 0 auto;
    background: #222;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 0 10px #ffa500;
}

.avatar-form {
    max-width: none;
}

.avatar {
    width: 128px;
    height: 128px;
    margin: 20px auto;
    border: 2px solid #fff;
    border-radius: 12px;
}

.currency {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 25px;
}

.currency div {
    background: orange;
    color: black;
    padding: 10px 20px;
    border-radius: 12px;
}

.buttons {
    text-align: center;
    margin-top: 30px;
}

.buttons a {
    display: inline-block;
    margin: 8px 12px;
    padding: 12px 20px;
    background: orange;
    color: black;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s;
}

.buttons a:hover {
    background: #ffaa00;
}

.staff-list {
    max-width: 600px;
    margin: 0 auto;
    background: #222;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 12px #ffa500;
}

.staff-list h2 {
    margin-top: 0;
}

.staff-list ul {
    list-style-type: none;
    padding-left: 0;
    font-size: 18px;
}

.staff-list ul li {
    padding: 6px 0;
    border-bottom: 1px solid #444;
    color: #ffa500;
}

.staff-list ul li:last-child {
    border-bottom: none;
}
.outlined {
  color: white;
  text-shadow:
    -1px -1px 0 #000,
     0   -1px 0 #000,
     1px -1px 0 #000,
     1px  0   0 #000,
     1px  1px 0 #000,
     0    1px 0 #000,
    -1px  1px 0 #000,
    -1px  0   0 #000;
}