.corner-modal {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fff;
    color: #333;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    padding: 1rem;
    width: 480px;
    z-index: 9999;
    font-size: 14px;
    animation: fadeSlideIn 0.6s ease-out;
}

.corner-modal-content {
    position: relative;
}

.corner-close {
    position: absolute;
    top: 5px;
    right: 5px;
    border: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
    color: #666;
}

    .corner-close:hover {
        color: #000;
    }

.corner-actions {
    margin-top: 8px;
}

    .corner-actions a {
        text-decoration: none;
        color: #0059ff;
        font-weight: 500;
    }

        .corner-actions a:hover {
            text-decoration: underline;
        }

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
