body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
    text-align: center;
    color: #333;
}

#joke-buttons, #reaction-buttons {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
}

.blue-button {
    background-color: #007bff;
    color: white;
}

#good-reaction {
    background-color: #28a745;
    color: white;
}

#bad-reaction {
    background-color: #dc3545;
    color: white;
}

button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

#joke-display {
    background-color: #e9e9e9;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

#stats {
    display: flex;
    justify-content: space-between;
}