/* Launch Clip Button Styles */
#launchClipTokenBtn {
    position: relative;
    transition: all 0.2s ease;
}

#launchClipTokenBtn:disabled {
    opacity: 0.35 !important;
    cursor: not-allowed !important;
    filter: grayscale(0.4);
    background-color: #505d6f !important;
    border-color: #505d6f !important;
}

#launchClipTokenBtn:disabled::after {
    content: 'Paste a valid clip URL to enable';
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #9ca3af;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
}

#launchClipTokenBtn:disabled:hover::after {
    opacity: 1;
}

#launchClipTokenBtn:not(:disabled) {
    opacity: 1 !important;
}

#launchClipTokenBtn:not(:disabled):hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(64, 81, 137, 0.5);
}

#launchClipTokenBtn:not(:disabled):active {
    transform: translateY(0);
}

/* Toastr Notification Overrides for Launch Clip */
.toast-info {
    background-color: #405189 !important;
    border: 1px solid rgba(64, 81, 137, 0.3) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    max-width: 350px !important;
}

.toast-info .toast-message {
    font-size: 13px !important;
    line-height: 1.5 !important;
}

.toast-info .toast-title {
    font-weight: 600 !important;
    font-size: 14px !important;
    margin-bottom: 4px !important;
}

#toast-container > div {
    opacity: 0.95 !important;
}

#toast-container .toast-close-button {
    color: #fff !important;
    opacity: 0.7 !important;
}

#toast-container .toast-close-button:hover {
    opacity: 1 !important;
}
