#colonySection {
    background-image: url('../../assets/images/background1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    padding: 20px;
    box-sizing: border-box;
}

/* .content-panel and shared UI styles have been moved to styles/base/game-area.css */

.section-header {
    width: 100%;
    margin-bottom: 10px;
    margin-top: 20px;
    font-size: 1.2em;
    color: #FFF;
}

.mining-category-container {
    background-color: #000;
    border: 1px solid #444;
    padding: 15px;
    width: fit-content; /* FIXED: Changed from 100% to fit-content */
    box-sizing: border-box;
}

/* Section-specific button state: unaffordable */
.image-button.unaffordable {
    filter: grayscale(60%);
    opacity: 0.7;
    cursor: not-allowed;
}

/* Make the text color red for unaffordable items */
.image-button.unaffordable .building-name {
    color: #E74C3C;
    text-shadow: none;
}

#colonySection > .content-panel {
    /* Match Crash Site/Campsite panel inset (tighter than global content-panel padding). */
    padding: 12px;
    scrollbar-gutter: auto;
}

html.is-compact #colonySection {
    padding: 1px;
}

html.is-compact #colonySection > .content-panel {
    padding: 1px;
}