/* Add Button Injection */
.jsam-add-slip-btn {
    background: #333 !important;
    color: #fff !important;
    width: 30px !important;
    padding: 0 !important;
    font-size: 18px !important;
    margin-left: 5px;
    min-width: unset !important;
}

/* Floating Slip Container */
#jsam-floating-slip {
    position: fixed;
    bottom: 0;
    right: 20px;
    width: 320px;
    background: #1a1a22;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
    z-index: 99999;
    font-family: 'Inter', sans-serif;
    color: #fff;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

/* Collapsed State */
.jsam-slip-collapsed {
    transform: translateY(calc(100% - 40px));
}

/* Header */
.jsam-slip-header {
    background: #d4af37; /* Gold */
    color: #000;
    padding: 10px 15px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
}

/* Body */
.jsam-slip-body {
    padding: 15px;
    max-height: 400px;
    overflow-y: auto;
}

/* List Items */
#jsam-selections {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

#jsam-selections li {
    background: rgba(255,255,255,0.05);
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 3px solid #d4af37;
}

.item-info { flex: 1; font-size: 13px; line-height: 1.2; }
.item-info small { display: block; color: #888; font-size: 11px; }
.item-odds { background: #000; padding: 2px 6px; border-radius: 4px; font-weight: bold; color: #d4af37; margin: 0 10px; }
.jsam-remove-item { cursor: pointer; color: #e74c3c; font-weight: bold; font-size: 18px; }

/* Footer area */
.jsam-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: #ccc;
}
.jsam-stats span { color: #fff; font-weight: bold; }

#jsam-multi-stake {
    width: 100%;
    margin-bottom: 10px;
    background: #000;
    border: 1px solid #444;
    color: #fff;
    padding: 10px;
}

#jsam-place-multi-btn {
    width: 100%;
    background: #2ecc71 !important; /* Green for action */
    color: #fff !important;
}

#jsam-multi-msg {
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    font-weight: bold;
}