* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    color: #ff0000;
    line-height: 1.2;
    font-size: 15px;
}

.chinese {
}

/* Color classes for different item types */
.street-item {
    color: #000000 !important; /* Green for 街面上 */
}

.interface-item {
    color: #000000 !important; /* Blue for 界面下 */
}

.tea-room-item {
    color: #000000 !important; /* Red for 茶水间 */
}

.upcoming-item{
    color: #cdcdcd !important;
}

.column-header {
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    padding: 8px 4px;
    border-bottom: 1px solid #000000;
    font-size: 28px;
    color: #000000;
    background: none;
    cursor: default;
    font-weight: bold;
    height: 45px;
}

.participant-inline {
    margin-bottom: 0;
    display: flex;
    align-items: baseline;
    color: #9d9d9d;
    background: none;
    text-align: right;
    justify-content: flex-end;
}

.header-right {
    text-align: right;
    color: #9d9d9d;
}

.container {
    width: 100%;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid #000000;
}

.column {
    display: flex;
    flex-direction: column;
    padding: 0;
    border-right: 1px solid #000000;
}

.column:last-child {
    border-right: none;
}

.item {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    border: none;
    background: none;
    padding: 2px 8px;
    border-bottom: 1px solid #000000;
    /* font-weight: bold; */
    min-height: 30px;
}

.item:hover {
    background-color: #b8b8b8;
    color: #fe0000;
    border-bottom: 1px solid #000000;
}

.number {
    font-weight: bold;
    margin-right: 12px;
    min-width: 30px;
}

.title {
    flex: 1;
    letter-spacing: 0.5px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .column {
        padding: 15px;
    }
    
    
    /* Add participant numbers inline with game items */
    .games-item {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
    }
    
    .participant-inline {
        font-size: 20px;
        color: #666;
        margin-left: 10px;
    }
}

/* Logo */
.logo {
    position: fixed;
    right: 20px;
    z-index: 1000;
    font-size: 24px;
    font-weight: bold;
    color: #fe0101;
}

/* Copyright */
.copyright {
    position: fixed;
    bottom: 5px;
    left: 5px;
    z-index: 1000;

}

.copyright p {
    font-size: 8px;
    color: #000000;
    margin: 0;
    font-weight: normal;
}
