.wcrop-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 300px;
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 15px;
    padding-top: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 9999;
}

.wcrop-popup.show {
    opacity: 1;
    transform: translateY(0);
}

.wcrop-popup ul {
    margin: 8px 0;
    padding-left: 20px;
}

.wcrop-popup small {
    color: #888;
}

.wcrop-popup-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    color: #aaa;
    padding: 0;
    transition: color 0.2s ease;
}

.wcrop-popup-close:hover {
    color: #333;
}