/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #fdf6e3;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

/* Login Container */
#login-container {
    text-align: center;
    background-color: #ffcc80;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

form {
    text-align: center;
}

form input {
    margin: 10px;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #e67e22;
    border-radius: 4px;
    background-color: #fff3e0;
    color: #000;
}

form button {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #e67e22;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form button:hover {
    background-color: #d35400;
}

/* Content Container */
#content {
    text-align: left;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    display: none;
}

/* Title */
h1 {
    color: black;
    font-size: 24px;
}

/* Paragraph */
p {
    font-size: 16px;
}

/* Marked Text */
.marked {
    font-style: italic;
    color: red;
}

/* Game List */
.game-list {
    background-color: #f5e1c0;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.game-list ul {
    padding-left: 20px;
}

/* Regular Bullet Points */
.game-list li {
    font-size: 18px;
    margin: 5px 0;
    list-style-type: disc; /* Default circle bullet */
}

/* Favorite Games - Square Bullet & Red Text */
.favorite {
    color: red;
    font-weight: bold;
    list-style-type: square !important; /* Ensures bullet is square */
}
