.uextras-popup {
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.uextras-popup-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.uextras-popup-close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.uextras-popup-close:hover,
.uextras-popup-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.uextras-popup-actions {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

#uextras-popup-photo {
    margin: 15px 0;
    width: 100%;
}

.uextras-progress-container {
    display: none;
    margin-top: 15px;
}

.uextras-progress-bar-wrapper {
    width: 100%;
    height: 10px;
    background-color: #eee;
    border-radius: 5px;
    overflow: hidden;
}

.uextras-progress-bar {
    width: 0%;
    height: 100%;
    background-color: #007cba;
    transition: width 0.2s;
}

.uextras-progress-text {
    text-align: center;
    font-size: 12px;
    margin-top: 5px;
}

.uextras-popup-content h3, 
.uextras-popup-content p {
    margin-top: 0;
}
