/* スティッキーガチャバーのボタンスタイル */
.sticky-gacha-btn,
#sticky-gacha-button {
    border-radius: 30px !important;
    width: 150px !important;
    min-width: 150px !important;
    max-width: 150px !important;
    height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: bold !important;
    font-size: 0.875rem !important;
    transition: all 0.3s !important;
}

/* ボタンのホバー効果を保持 */
.sticky-gacha-btn:hover,
#sticky-gacha-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* 無効化状態のスタイル */
.sticky-gacha-btn:disabled,
#sticky-gacha-button:disabled {
    background-color: #9ca3af !important; /* グレー */
    color: #6b7280 !important; /* ダークグレー */
    cursor: not-allowed !important;
    opacity: 0.7 !important;
    box-shadow: none !important;
    transform: none !important;
}

.sticky-gacha-btn:disabled:hover,
#sticky-gacha-button:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
    background-color: #9ca3af !important;
}