/*.easyavup_profile-pic {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.easyavup_profile-pic:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}*/

.easyavup_front {
    width: 50px;
    height: 50px;
    display: inline-block;
    position: relative;
}
.easyavup_front .easyavup_img_wrap {
    height: inherit;
    width: inherit;
}

.easyavup_front .easyavup_img_wrap img {
    height: inherit;
    width: inherit;
    object-fit: cover;
    border-radius: inherit;
}
.easyavup_front.easyavup_open_action {
    cursor: pointer;
}
.easyavup_front.easyavup_open_action .easyavup_upload {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(135deg, #667eeac2, #764ba2cf);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}
.easyavup_front.easyavup_open_action:hover .easyavup_upload {
    opacity: 1;
}
.easyavup_upload svg {
    width: 40%;
    transition: all 0.3s;
}
.easyavup_upload:hover svg {
    transform: rotate(-20deg) scale(0.8);
}
.easyavup_btn svg {
    width: 20px;
}
.easyavup_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.easyavup_overlay.easyavup_active {
    opacity: 1;
    visibility: visible;
}

.easyavup_popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.easyavup_popup.easyavup_active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.easyavup_popup-header {
    text-align: center;
    margin-bottom: 24px;
}

.easyavup_popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.easyavup_popup-subtitle {
    color: #666;
    font-size: 14px;
}

.easyavup_close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #666;
    font-size: 18px;
    padding: 4px;
}

.easyavup_close-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.easyavup_profile-section {
    text-align: center;
    margin-bottom: 32px;
}

.easyavup_profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 0;
    position: relative;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.easyavup_profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.easyavup_profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.easyavup_profile-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.easyavup_profile-email {
    color: #666;
    font-size: 14px;
}

.easyavup_action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.easyavup_btn {
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.easyavup_btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.easyavup_btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.easyavup_btn-danger {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
}

.easyavup_btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.easyavup_btn-secondary {
    background: rgba(0, 0, 0, 0.05);
    color: #666;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.easyavup_btn-secondary:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

.easyavup_file-input {
    display: none;
}

.easyavup_icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.easyavup_success-message {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.3);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    /*display: none;*/
    margin-bottom: 10px;
    transform: translateY(100%) scale(0);
}

.easyavup_success-message.easyavup_show {
    transform: translateY(0) scale(1);
}
button.easyavup_deleteBtn[data-id="0"], 
button.easyavup_deleteBtn[data-id=""] {
    display: none;
}

@media (max-width: 480px) {
    .easyavup_popup {
        padding: 24px;
    }
    
    .easyavup_profile-image {
        width: 100px;
        height: 100px;
    }
    
    .easyavup_popup-title {
        font-size: 20px;
    }
}

.easyavup_btn-loading {
    position: relative;
    color: transparent;
}

.easyavup_btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: easyavup_spin 0.8s linear infinite;
    color: white;
}

@keyframes easyavup_spin {
    to { transform: rotate(360deg); }
}
