body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f4f7f6;
    color: #333;
    margin: 0;
    padding: 20px;
}

#root {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #005f73;
}

.app-container {
    display: flex;
    gap: 40px;
}

.main-content {
    flex: 2;
}

.sidebar {
    flex: 1;
    background-color: #e9f5f9;
    padding: 20px;
    border-radius: 8px;
}

.request-form {
    display: flex;
    margin-bottom: 20px;
}

.request-form input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.request-form button {
    padding: 10px 15px;
    border: none;
    background-color: #0077b6;
    color: white;
    border-radius: 4px;
    margin-left: 10px;
    cursor: pointer;
    font-size: 16px;
}

.request-form button:hover {
    background-color: #023e8a;
}

.snack-list, .history-list {
    list-style: none;
    padding: 0;
}

.snack-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.snack-item:last-child {
    border-bottom: none;
}

.snack-name {
    font-size: 18px;
}

.vote-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vote-button {
    padding: 5px 10px;
    border: none;
    background-color: #90e0ef;
    color: #005f73;
    border-radius: 4px;
    cursor: pointer;
}

.vote-button:hover {
    background-color: #48cae4;
}

.leaderboard-list {
    list-style: none;
    padding: 0;
}

.leaderboard-item {
    font-size: 18px;
    padding: 8px;
    background-color: #caf0f8;
    margin-bottom: 5px;
    border-radius: 4px;
}

.reset-button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #d90429;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
}

.reset-button:hover {
    background-color: #bf0603;
}

