.update-logo-wrapper-c3fbd2ab {
    position: relative;
    display: inline-block;
    overflow: hidden;
    max-width: 100%;
}

.update-logo-wrapper-c3fbd2ab.is-editable {
    /* cursor: pointer; removed to allow distinct button clicks */
}

.update-logo-img-c3fbd2ab {
    display: block;
    width: 100%;
    height: auto;
    transition: filter 0.3s ease;
}

.update-logo-overlay-c3fbd2ab {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.update-logo-wrapper-c3fbd2ab.is-editable:hover .update-logo-overlay-c3fbd2ab {
    opacity: 1;
}

.update-logo-wrapper-c3fbd2ab.is-loading .update-logo-overlay-c3fbd2ab {
    opacity: 0.8;
    pointer-events: none;
}

.update-logo-actions-c3fbd2ab {
    display: flex;
    gap: 10px;
}

.update-logo-action-edit-c3fbd2ab,
.update-logo-action-delete-c3fbd2ab {
    color: #fff;
    font-size: 20px;
    background: rgba(255,255,255,0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

/* Force FontAwesome display to fix empty circles */
.update-logo-action-edit-c3fbd2ab i,
.update-logo-action-delete-c3fbd2ab i {
    display: inline-block !important;
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Solid", sans-serif !important;
    font-weight: 900 !important;
}

.update-logo-action-edit-c3fbd2ab:hover,
.update-logo-action-delete-c3fbd2ab:hover {
    background: rgba(255,255,255,0.4);
}

.update-logo-spinner-c3fbd2ab {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: #333;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 2;
}