#ibm-cricket-drawer-icon {
    position: fixed;
    right: 20px;
    bottom: 120px;
    width: 60px;
    height: 60px;
    background: #0023a7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 99999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

#ibm-cricket-drawer-icon img {
    width: 32px;
    height: 32px;
}

#ibm-cricket-drawer {
    position: fixed;
    top: 0;
    right: -350px;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 12px rgba(0,0,0,0.2);
    z-index: 99998;
    transition: right 0.35s ease;
    display: flex;
    flex-direction: column;
}

#ibm-cricket-drawer.open {
    right: 0;
}

.ibm-drawer-header {
    padding: 18px;
    background: #0023a7;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#ibm-drawer-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
}

.ibm-drawer-content {
    padding: 15px;
    overflow-y: auto;
    flex-grow: 1;
}

/* --- ISOLATED MATCH CARD (no conflict with banner) --- */
.ibm-drawer-match-card {
    display: block;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 12px;
    text-decoration: none;
    color: #000;
    background: #f8f9ff;
}

.ibm-drawer-match-card:hover {
    background: #eef1ff;
}

.ibm-drawer-match-teams {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.ibm-drawer-match-teams span {
    margin: 0 6px;
    color: #b33f00;
}

.ibm-drawer-match-date,
.ibm-drawer-match-time {
    font-size: 14px;
    color: #444;
}

/* Mobile */
@media (max-width: 768px) {
    #ibm-cricket-drawer {
        width: 85%;
    }

    #ibm-cricket-drawer-icon {
        bottom: 90px;
        right: 15px;
        width: 52px;
        height: 52px;
    }
}