/* Container Grid */
.ipl-matches-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); */
    gap: 24px;
    padding: 20px 0;
	text-align: center;
}

/* Individual Card */
.ipl-match-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
	gap:20px;
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.ipl-match-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

/* Typography */
.match-teams {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    color: #1a1a1a;
}

.match-teams small {
    color: #888;
    font-weight: 400;
}

.match-info {
    margin-bottom: 15px;
}

.match-date {
    margin: 0;
    font-weight: 600;
    color: #444;
}

.match-venue {
    margin: 2px 0 0 0;
    font-size: 1.2rem;
    color: #777;
    font-style: italic;
    font-weight: 600;
}
/* Scores Section */
.match-score {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.95rem;
    border-left: 4px solid #007cba; /* WordPress Blue */
    margin: 10px 0;
}

/* Winner Styling */
.match-winner {
    color: #218449;
    font-weight: 700;
    margin: 10px 0;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* Prediction Button Customization */
.ipl-predict-btn {
    margin: auto; /* Pushes button to the bottom of the card */
    text-align: center;
    padding: 10px;
    font-weight: 600;
    border-radius: 4px;
    background-color: #007cba; /* Matches WP Primary */
    color: #fff !important;
    text-decoration: none !important;
	width: fit-content;

	transition: background-color 0.3s ease;
}

.ipl-predict-btn:hover {
    background-color: #006799;
}

.no-matches {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px;
}