
/* --- UG CALENDAR STYLES (Plugin Asset) --- */

.ug-calendar-container {
    font-family: 'Roboto', sans-serif, Helvetica, Arial; 
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;
}

/* Match Row */
.ug-match-row {
    display: flex;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px 15px;
    transition: background 0.3s ease;
    flex-wrap: wrap; 
}

/* Zebra Striping & Hover */
.ug-match-row:nth-child(odd) {
    background-color: #f9f9f9;
}
.ug-match-row:hover {
    background-color: #eef2f5; 
    border-left: 4px solid #E30613; /* Gas Sales Red */
    padding-left: 11px; 
}

/* Header Row */
.ug-header {
    background-color: #002D62; /* Gas Sales Midnight Blue */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

/* Columns Layout */
.ug-col {
    padding: 0 10px;
}
.ug-col.date { width: 15%; font-weight: bold; color: #E30613; display: flex; flex-direction: column; }
.ug-col.match { width: 55%; font-weight: 600; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ug-col.place { width: 15%; }
.ug-col.result { width: 15%; font-weight: bold; text-align: right; }

/* Typography Details */
.ug-day { display: block; }
.ug-time { font-size: 0.9em; color: #555; font-weight: normal; }

.ug-team-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ug-team-logo.mini {
    height: 30px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

.ug-vs {
    color: #ccc;
    font-size: 12px;
    margin: 0 5px;
    font-weight: normal;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hidden-mobile { display: none; }
    
    .ug-match-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .ug-col { width: 100% !important; padding: 0; }
    
    .ug-col.match { 
        font-size: 20px; 
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }
    
    .ug-team-wrapper {
        justify-content: center;
        width: 100%;
    }

    .ug-col.result { 
        text-align: center; 
        background: #f0f0f0;
        padding: 5px 0;
        border-radius: 4px;
    }
}