/* Sportsbook Integration Styles */

#custom-betslip {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.empty-betslip {
    text-align: center;
    color: #999;
    padding: 20px;
}

.betslip-items {
    margin-bottom: 15px;
}

.betslip-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 10px;
    background: #f9f9f9;
}

.selection-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.selection-info strong {
    font-size: 14px;
    color: #333;
}

.selection-info .market {
    font-size: 12px;
    color: #666;
}

.selection-info .outcome {
    font-size: 13px;
    color: #0f853d;
    font-weight: 600;
}

.selection-odds {
    display: flex;
    align-items: center;
    gap: 10px;
}

.selection-odds .odds {
    background: #0f853d;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
}

.remove-btn {
    background: #dc3545;
    color: white;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn:hover {
    background: #c82333;
}

.betslip-footer {
    border-top: 2px solid #e0e0e0;
    padding-top: 15px;
}

.stake-input {
    margin-bottom: 12px;
}

.stake-input label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

.stake-input input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.submit-coupon-btn {
    width: 100%;
    padding: 12px;
    background: #0f853d;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-coupon-btn:hover {
    background: #0d6e32;
}

.submit-coupon-btn:active {
    transform: scale(0.98);
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 6px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-success {
    background: #28a745;
}

.notification-error {
    background: #dc3545;
}

.notification-info {
    background: #17a2b8;
}

.notification-warning {
    background: #ffc107;
    color: #333;
}
