
.eby-store-status-badge {
    display: inline-block;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}
/* Overlay */
#eby-stores-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.55); z-index: 99998;
}

/* Popup box */
#eby-stores-popup {
    display: none; position: fixed;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: #fff; border-radius: 8px;
    padding: 28px; width: 550px; max-width: 95vw;
    max-height: 80vh; overflow-y: auto;
    z-index: 99999; box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

#eby-stores-popup h5 {
    font-size: 18px; font-weight: 700; margin: 0 0 16px; color: #222;
}

/* Store card */
.eby-store-card {
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 16px;
}

.eby-store-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.eby-store-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.eby-store-row i {
    width: 12px;
    text-align: center;
    margin-top: 2px;
    color: #0d2d4c;
}

/* Action buttons */
.eby-store-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.eby-store-actions a {
    flex: 1;
    text-align: center;
    background: #0d2d4c;
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 600;
}

.eby-store-actions a:hover {
    background: #1a3d63;
}


/* Close button */
.eby-stores-close-btn {
    display: block;
    margin-top: 10px;
    background: none;
    border: none;
    color: #e53935;
    font-size: 14px;
    cursor: pointer;
    float: right;
}

@media (max-width: 480px) {
    #eby-stores-popup {
        width: 92vw;
        padding: 20px;
    }
}