/* URL Error Toast */
.url-error-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #d32f2f;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideDown 0.3s ease-out;
    max-width: 90%;
    width: auto;
}

.url-error-toast a {
    color: white;
    text-decoration: underline;
    font-weight: bold;
}

.url-error-toast .close-toast {
    cursor: pointer;
    opacity: 0.8;
    font-size: 18px;
    line-height: 1;
    margin-left: 8px;
}

.url-error-toast .close-toast:hover {
    opacity: 1;
}

@keyframes slideDown {
    from {
        transform: translate(-50%, -20px);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}