
.event-sidebar-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 20px;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-item {
    display: flex;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.event-date {
    background: #f5f5f5;
    padding: 15px;
    text-align: center;
    flex: 0 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date .day {
    font-size: 24px;
    font-weight: bold;
}

.event-date .month {
    font-size: 14px;
    text-transform: uppercase;
}

.event-date .year {
    font-size: 12px;
    color: #666;
}

.event-date .time {
    margin-top: 5px;
    font-size: 14px;
    color: #333;
}

.event-content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-content .league {
    font-size: 14px;
    font-weight: bold;
    color: #666;
    margin-bottom: 5px;
}

.event-content h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.event-content .details {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.event-content .details .icon {
    margin-right: 5px;
}

.buy-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.buy-block .price {
    font-size: 16px;
    font-weight: bold;
    color: #009900;
}

.buy-block .buy-button {
    background: #28a745;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.buy-block .buy-button:hover {
    background: #218838;
}

.event-sidebar {
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    position: sticky;
    top: 20px;
}

.sidebar-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.sidebar-tags {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-tags li {
    margin-bottom: 8px;
    border-bottom: 1px solid #eee;
    padding-bottom: 4px;
}

.sidebar-tags li a {
    text-decoration: none;
    color: #333;
    font-weight: normal;
    transition: all 0.2s ease;
}

.sidebar-tags li a:hover {
    font-weight: bold;
    text-decoration: underline;
}
