* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    min-height: 100vh;
}

.main-content {
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 60px); /* Subtract navbar height */
}

.game-container {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
}

.race-track {
    background-color: #4CAF50;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    position: relative;
    height: 200px;
}

.horse {
    background-color: white;
    padding: 0.5rem;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    position: absolute;
    transition: left 0.5s ease;
    width: 150px;
}

.horse-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.horse-name {
    font-weight: bold;
    color: #333;
}

.controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #45a049;
}

#startRace {
    background-color: #4CAF50;
}

#resetRace {
    background-color: #f44336;
}

#resetRace:hover {
    background-color: #d32f2f;
} 