/* css/detailResources.css */

/* Game View */
.game_view {
    flex: 0 0 20%;
    height: 100%;
    border-right: 2px solid #000;
    border-radius: 5px 0 0 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    padding: 10px;
    box-sizing: border-box;
}

body.dark-mode .game_view {
    border-right: 2px solid #00cc00;
    background: #1a1a1a;
}

.game_view h2 {
    margin-bottom: 10px;
    font-size: 1.5em;
    text-align: center;
}

.game_logo {
    margin-bottom: 10px;
}

.game_logo img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.game_view #refresh_countdown {
    font-size: 1em;
    font-weight: bold;
    color: #333;
}

body.dark-mode .game_view #refresh_countdown {
    color: #fff;
}

/* Detail Game Content */
#detail_game_content {
    flex: 0 0 40%;
    height: 100%;
    display: flex;
    border-left: 2px solid #000;
    box-sizing: border-box;
}

body.dark-mode #detail_game_content {
    border-left: 2px solid #00cc00;
}

#timerInfoDetail,
#eventInfoDetail,
#socialInfoDetails {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    overflow-y: scroll;
    background-color: darkgrey;
}

body.dark-mode #timerInfoDetail,
body.dark-mode #eventInfoDetail,
body.dark-mode #socialInfoDetails {
    border-bottom: 1px solid #00cc00;
}

#eventInfoDetail,
#socialInfoDetails {
    border-top: 1px solid #ccc;
}

body.dark-mode #eventInfoDetail,
body.dark-mode #socialInfoDetails {
    border-top: 1px solid #00cc00;
}

#socialInfoDetails {
    border-bottom: none;
}

/* Resource Icons */
.resource_icons {
    height: 25%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

body.dark-mode .resource_icons {
    border-right: 1px solid #00cc00;
}

.icon-row {
    width: 100%;
    box-sizing: border-box;
    display: contents;
}

.icon-row.top-row .resource-icon {
    object-fit: contain;
    cursor: pointer;
    width: 75%;
    height: 100%;
}

.icon-row.bottom-row {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f9f9f9;
    padding: 5px 0;
    transition: display 0.3s;
}

body.dark-mode .icon-row.bottom-row {
    background-color: #2a2a2a;
    color: #fff;
}

/* Responsive Design */
@media screen and (max-width: 720px) {
    .game_view {
        width: 100%;
        height: 250px;
        margin-bottom: 10px;
        border-right: none;
        border-bottom: 2px solid #000;
        border-radius: 5px 5px 0 0;
    }

    body.dark-mode .game_view {
        border-bottom: 2px solid #00cc00;
    }

    .game_view #refresh_countdown {
        font-size: 0.9em;
    }

    #detail_game_content {
        width: 100%;
        height: auto;
        border-left: none;
        border-top: 2px solid #000;
        margin-top: 10px;
    }

    body.dark-mode #detail_game_content {
        border-top: 2px solid #00cc00;
    }

    #timerInfoDetail,
    #eventInfoDetail,
    #socialInfoDetails {
        height: 33.33%;
        border-bottom: 1px solid #ccc;
    }

    #socialInfoDetails {
        border-bottom: none;
    }

    .resource_icons {
        flex-direction: row;
        height: auto;
        width: 25%;
        display: contents;
    }

    .icon-row.top-row .resource-icon {
        width: auto;
        height: auto;
        margin: 0 2px;
    }

    .icon-row.bottom-row {
        font-size: 0.7em;
        padding: 2px 0;
    }
}