/* New Account UI Styles */
.eco-account-card {
    padding: 30px !important;
}

.eco-account-avatar-section {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.eco-avatar-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
}

.eco-main-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.eco-avatar-edit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
    cursor: pointer;
    text-align: center;
    padding: 10px;
    line-height: 1.2;
    box-sizing: border-box;
}

.eco-avatar-wrapper:hover .eco-avatar-edit-overlay {
    opacity: 1;
}

.eco-avatar-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.eco-display-name-big {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.eco-change-avatar-link {
    font-size: 14px;
    color: #0073aa;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.eco-change-avatar-link:hover {
    text-decoration: underline;
}

.eco-form-divider {
    margin: 40px 0 30px 0;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.eco-btn-large {
    padding: 12px 30px !important;
    font-size: 16px !important;
}

