@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    min-height: 100vh;
}

.main-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    max-width: 1300px;
}

.spin-wrapper, .results-wrapper {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

.spin-wrapper {
    flex: 1;
    min-width: 400px;
    text-align: center;
    position: sticky;
    top: 40px;
}

.results-wrapper {
    flex: 1.2;
    min-width: 400px;
}

.main-title {
    font-size: 1.8em;
    color: #c8102e;
    margin-bottom: 25px;
    margin-top: 10px; /* Added margin top for spacing */
}

h2 {
    color: #333;
    font-weight: 700;
}

#current-prize-info {
    font-size: 1.1em;
    color: #555;
    min-height: 50px;
}

.display-panel {
    margin: 20px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.result-number {
    font-size: 80px;
    font-weight: bold;
    color: #c8102e;
    letter-spacing: 10px;
}

#spinButton {
    background-color: #c8102e;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

#spinButton:hover {
    background-color: #a20c24;
}

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

.prize-section {
    margin-bottom: 25px;
}

.prize-section h3 {
    color: #333;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    font-size: 1.1em;
}

.prize-description {
    font-size: 0.9em;
    color: #666;
    margin-top: -5px;
    margin-bottom: 15px;
}

.number-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.number-chip {
    background-color: #c8102e;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: bold;
    min-width: 50px;
    text-align: center;
}
