body {
    font-family: Arial, sans-serif;
    background-color: #1f2a36;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.control-panel {
    width: 200px;
    padding: 20px;
    background-color: #1f2a36;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bet-settings input {
    width: 100%;
    padding: 8px;
    border: none;
    background-color: #27333f;
    color: white;
    border-radius: 5px;
    margin-bottom: 10px;
}

.bet-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.drop-ball-button {
    background-color: #28a745;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    min-width: 190px;
    flex-shrink: 0;
}

.bet-buttons {
    display: flex;
    gap: 5px;
}

.bet-buttons button {
    margin-right: 10px;
    background-color: #27333f;
    color: white;
    padding: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.bet-buttons button:hover {
    background-color: #3a4d5f;
}

.bet-button-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

#multiplier-row {
    display: flex;
    justify-content: center;
    margin-top: 0px;
    width: 100%;
}

.multiplier-box {
    margin: 1.5px;
    width: 37.5px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    color: rgb(31, 31, 31);
    border-radius: 6.5px;
}

#total-profit-display {
    width: 200px;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    background-color: #1f2a36;
    border-radius: 10px;
    margin-left: auto;
    flex-shrink: 0;
}

.profit-positive {
    color: #28a745;
}

.profit-negative {
    color: #e60000;
}

.profit-zero {
    color: #808080;
}

.red {
    background-color: #e60000;
}

.orange {
    background-color: #ff6f00;
}

.yellow {
    background-color: #ffcc00;
}

#graph-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    margin-top: 0px;
    width: 100%;
    height: 200px;
    margin: 1px;
}

#y-axis {
    width: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-right: 0px;
    position: relative;
    border-right: 2px solid white; 
    transform: translateX(-5px);
}

.y-axis-label {
    color: white;
    font-size: 12px;
    text-align: left;
}

#graph-bars {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: flex-end;
    transform: translateX(-16px);
}

.graph-bar {
    margin: 1px;
    width: 38px;
    height: 0;
    background-color: #4CAF50;
    transition: height 0.3s ease;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 20px;
    background-color: #27333f;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

a.github-link {
    color: #BB86FC;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

a.github-link:hover {
    text-decoration: underline;
}

