/* ---- BACKGROUND ---- */
body {
    background: radial-gradient(circle, #ADD8E6, #4682B4);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
}

/* ---- CONTAINER ---- */
.container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* ---- GAME SECTION ---- */
#game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#my_canvas {
    background-color: #f3f3f3;
    border-radius: 20px;
    background-image: url('../tiles/bck@2x.png');
    display: block;
    margin: 20px auto;
    border: 2px solid black;
}

/* ---- SCORE ---- */
#score-value {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin-top: 10px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* ---- BUTTONS ---- */
.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

.green-button {
    background-color: #9acd32;
    color: #fff;
    border: 3px solid #556b2f;
    padding: 15px 40px;
    font-size: 22px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 3px 3px 0px #556b2f;
    transition: all 0.2s ease-in-out;
}

.green-button:hover {
    background-color: #adff2f;
    box-shadow: 5px 5px 0px #556b2f;
}

/* ---- GAME OVER SCREEN ---- */
#game-over-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 32px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    display: none;
}

#game-over-overlay p {
    margin: 10px 0;
}

#overlay-reset {
    margin-top: 20px;
}

/* ---- DEBUG PANEL ---- */
#debug-panel {
    width: 250px;
    background: #fff;
    margin: 25% auto;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

h3 {
    margin-top: 0;
    text-align: center;
}

/* Debug Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    border: 1px solid black;
    padding: 5px;
    text-align: center;
}

caption {
    font-weight: bold;
    margin-bottom: 5px;
}

/* ---- HITBOX TOGGLE ---- */
#debug-panel label {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 10px 0;
    font-size: 14px;
}
