body {
    font-family: Arial, sans-serif;
    margin: 30px;
    background-color: #f4f4f4;
}
form {
    background: white;
    padding: 20px;
    border-radius: 5px;
    width: 300px;
}
input, textarea, button {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
}
button {
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
}
button:hover {
    background-color: #218838;
}
a {
    margin-right: 10px;
}
ul {
    list-style-type: none;
    padding: 0;
}
li {
    background: white;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
}

.bets-list {
    list-style: none;
    padding: 0;
}

.bet-item {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.chat-section {
    margin-top: 10px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 5px;
}

.messages {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 10px;
    padding: 10px;
    background: white;
    border: 1px solid #eee;
}

.message {
    margin-bottom: 5px;
    padding: 5px;
}

.message-form {
    display: flex;
    gap: 10px;
}

.message-form input[type="text"] {
    flex: 1;
    padding: 5px;
}

.message-form button {
    padding: 5px 15px;}