/* Kora Matches Scheduler - Public Styles */
.kora-public-wrap {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    direction: rtl;
}

.kora-public-league {
    margin-bottom: 25px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.kora-public-league-header {
    background: linear-gradient(135deg, #c62828, #e53935);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.kora-public-league-header img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.kora-public-league-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.kora-public-matches {
    padding: 10px;
}

.kora-public-match {
    display: grid;
    grid-template-columns: 80px 80px 1fr 100px;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.kora-public-match:last-child {
    border-bottom: none;
}

.kora-public-match:hover {
    background: #fafafa;
}

.kora-public-match.live {
    background: #fff8e1;
}

.kora-public-match.finished {
    background: #e8f5e9;
}

.kora-public-status {
    text-align: center;
}

.kora-public-status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.kora-public-status-badge.pending {
    background: #e0e0e0;
    color: #666;
}

.kora-public-status-badge.live {
    background: #ffc107;
    color: #333;
    animation: koraPulse 1.5s infinite;
}

.kora-public-status-badge.finished {
    background: #4caf50;
    color: #fff;
}

@keyframes koraPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.kora-public-time {
    text-align: center;
}

.kora-public-time-value {
    font-weight: 700;
    font-size: 14px;
    color: #333;
}

.kora-public-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.kora-public-team {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.kora-public-team.home {
    justify-content: flex-end;
}

.kora-public-team.away {
    justify-content: flex-start;
}

.kora-public-team img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.kora-public-team-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.kora-public-score {
    background: #f5f5f5;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    color: #333;
    min-width: 60px;
    text-align: center;
}

.kora-public-channel {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
    justify-content: center;
}

.kora-public-channel .dashicons {
    font-size: 16px;
    color: #c62828;
}

.kora-no-matches {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 16px;
}

@media (max-width: 600px) {
    .kora-public-match {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
    }

    .kora-public-team.home,
    .kora-public-team.away {
        justify-content: center;
    }
}
/*-------- buttons new----------*/
/* Social Links */
.kora-social-links{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:20px;
    direction:rtl;
}

.kora-social-links .kora-btn{
    flex:1;
    justify-content:center;
    min-width:170px;
    padding:12px 18px;
    font-weight:600;
}

@media (max-width:768px){
    .kora-social-links{
        flex-direction:column;
    }

    .kora-social-links .kora-btn{
        width:100%;
    }
}

.kora-btn-primaryy {
    background: #0866ff !important;
    color: #fff !important;
}
.kora-btn-primaryy:hover {
    background: #0046b9 !important;
}

.kora-btn-dangerr {
    background: #d32f2f !important;
    color: #fff !important;
}

.kora-btn-secondaryy {
    background: #2aa1da !important;
    color: #ffffff !important;
    border: 1px solid #ddd !important;
}

.kora-btn-secondaryy:hover {
    background: #006393 !important;
}

.kora-btn-darkk {
    color: #ffffff !important;
    border: 1px solid #bbdefb !important;
    background: #228b22 !important;
}

.kora-btn-darkk:hover {
    background: #006300 !important;
    color: #fff !important;
}