body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}
.container {
    margin-left: auto;
    margin-right: auto;
    width: 325px;
    height: 100%;;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#gameContainer {
    border: 2px solid #333;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
canvas {
    border: 1px solid #ccc;
    display: block; /* Altındaki boşluğu kaldırmak için */
    margin: 0 auto; /* Ortalamak için */
}


#paytable-container {
    display: flex;
    flex-wrap: wrap; /* Öğeler sığmazsa alt satıra geç */
    justify-content: center;
    gap: 15px; /* Öğeler arası boşluk */
    margin-bottom: 20px;
    max-width: 600px; /* Tablonun çok genişlemesini engelle */
    margin-left: auto;
    margin-right: auto;
}

.paytable-item {
    width: 130px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 5px 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.paytable-item img {
    width: 40px;  /* Resim boyutu */
    height: 40px;
}

.paytable-payouts {
    font-size: 14px;
    font-weight: bold;
    color: #555;
}

.bet-controls {
    width: 100%;
    margin-top: 20px;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.amount {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    gap: 20px;
}

.amount button {
    width: 100px;
    height: 40px;
    padding: 10px;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #4CAF50; /* Yeşil renk */
}

.bet {
    width: 100%;
    margin-left: 20px;
}

.bet button {
    width: 100%;
    height: 100%;
    padding: 10px;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    border-radius: 6px;
    border: none;
    background-color: sandybrown;
}

.results {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    display: hidden; /* Başlangıçta gizli */
}
