/* =========================================
   SHARED MATCH ITEMS CSS (Sidebar & Home)
   ========================================= */

.side-match-item {
    display: flex;
    align-items: flex-start;
    padding: 8px 10px;
    border-bottom: 1px solid #eeeeee;
    text-decoration: none;
    max-height: 62px;
    overflow: hidden; 
}
.side-match-item:last-child {
    border-bottom: none;
}
.side-match-icon {
    width: 20px; 
    height: auto;
    margin-right: 8px;
    margin-top: 2px; 
}
.side-match-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    overflow: hidden;
}
.side-match-title {
    font-size: 11px;
    color: #333333;
    text-decoration: none;
    font-weight: normal;
}
.side-match-item:hover .side-match-title {
    color: #1e5297;
    text-decoration: underline;
}
.side-match-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    margin-top: 4px;
    color: #888888; 
}
.side-live-icon {
    height: 10px;
    width: auto;
}
.side-match-time {
    color: #d90000; 
}

/* Container for the 2-column layout */
.others-streams-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px; /* Space between rows and columns */
    align-items: start; /* Prevents vertical stretching of items */
}

/* Specific styling for items inside the bottom grid to make them compact */
.others-streams-grid .side-match-item {
    padding: 8px 10px; /* Reduce inner spacing (top/bottom, left/right) */
    margin-bottom: 0; /* Remove bottom margin since grid 'gap' handles spacing */
    min-height: auto; /* Ensure no forced minimum height is applied */
}

