/* ===== UI BUTTONS SYSTEM (Settings + Inventory) ===== */
/* Centralized button styles for consistent UI across all scenes */

/* Settings button */
#settings-button {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: #ff6b35;
    color: #000;
    border: none;
    padding: 10px 19px;
    cursor: pointer;
    font-family: 'Ark Pixel 10px', monospace;
    text-transform: uppercase;
    z-index: 500;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    opacity: 0.5;
}

#settings-button:hover {
    background-color: #ff8c5a;
    opacity: 1;
}

/* Text size variants for settings button */
body.text-small #settings-button { font-size: 8px; }
body.text-medium #settings-button { font-size: 10px; }
body.text-large #settings-button { font-size: 12px; }
body.text-xlarge #settings-button { font-size: 14px; }

/* Inventory button */
#inventory-button {
    position: absolute;
    bottom: 20px;
    left: 134px;
    background-color: #6bffb8;
    color: #000;
    border: none;
    padding: 10px 19px;
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
    z-index: 500;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    opacity: 0.5;
}

#inventory-button:hover {
    background-color: #8bffcc;
    opacity: 1;
}

/* Text size variants for inventory button positioning */
body.text-small #inventory-button { font-size: 8px; left: 101px; }
body.text-medium #inventory-button { font-size: 10px; left: 107px; }
body.text-large #inventory-button { font-size: 12px; left: 120px; }
body.text-xlarge #inventory-button { font-size: 14px; left: 128px; }
